diff --git a/Classes/Issues/Comments/IssueCommentSectionController.swift b/Classes/Issues/Comments/IssueCommentSectionController.swift index f0f3d6304..91449c85f 100644 --- a/Classes/Issues/Comments/IssueCommentSectionController.swift +++ b/Classes/Issues/Comments/IssueCommentSectionController.swift @@ -119,7 +119,7 @@ final class IssueCommentSectionController: ListBindingSectionController UIViewController { + return EditIssueTitleViewController( + issueTitle: result?.title.string.allText ?? "" + ) + } - func presentContextMenu(with controller: UIViewController) { + func presentContextMenu( + with controller: UIViewController, + backgroundColor: UIColor = Styles.Colors.menuBackgroundColor.color + ) { guard let viewController = self.viewController else { return } ContextMenu.shared.show( sourceViewController: viewController, viewController: controller, options: ContextMenu.Options( containerStyle: ContextMenu.ContainerStyle( - backgroundColor: Styles.Colors.menuBackgroundColor.color + backgroundColor: backgroundColor ) ), delegate: self @@ -354,6 +372,19 @@ final class IssueManagingContextController: NSObject, ContextMenuDelegate { milestone: controller.selected ) } + + func didDismiss(editedIssueTitle: String?) { + guard let editedTitle = editedIssueTitle, + let previous = result else { return } + + client.setIssueTitle( + previous: previous, + owner: model.owner, + repo: model.repo, + number: model.number, + title: editedTitle + ) + } // MARK: ContextMenuDelegate @@ -364,6 +395,8 @@ final class IssueManagingContextController: NSObject, ContextMenuDelegate { didDismiss(controller: people) } else if let labels = viewController as? LabelsViewController { didDismiss(selected: labels.selected) + } else if let editIssueTitle = viewController as? EditIssueTitleViewController { + didDismiss(editedIssueTitle: editIssueTitle.editedIssueTitle) } } diff --git a/Classes/Issues/IssueViewModels.swift b/Classes/Issues/IssueViewModels.swift index 0d20d4bb5..9e3821bab 100644 --- a/Classes/Issues/IssueViewModels.swift +++ b/Classes/Issues/IssueViewModels.swift @@ -12,8 +12,7 @@ import StyledTextKit func titleStringSizing( title: String, - contentSizeCategory: UIContentSizeCategory, - width: CGFloat + contentSizeCategory: UIContentSizeCategory ) -> StyledTextRenderer { let builder = StyledTextBuilder(styledText: StyledText( text: title, style: Styles.Text.headline.with(foreground: Styles.Colors.Gray.dark.color) diff --git a/Classes/Issues/IssuesViewController.swift b/Classes/Issues/IssuesViewController.swift index 025f14427..b93cc278b 100644 --- a/Classes/Issues/IssuesViewController.swift +++ b/Classes/Issues/IssuesViewController.swift @@ -36,7 +36,8 @@ final class IssuesViewController: MessageViewController, EmptyViewDelegate, MessageTextViewListener, IssueLabelTapSectionControllerDelegate, -IssueManagingContextControllerDelegate { +IssueManagingContextControllerDelegate +{ private let client: GithubClient private let model: IssueDetailsModel diff --git a/Classes/Views/Constants.swift b/Classes/Views/Constants.swift index 4c79f5339..083418cd8 100644 --- a/Classes/Views/Constants.swift +++ b/Classes/Views/Constants.swift @@ -53,5 +53,7 @@ enum Constants { static let clear = NSLocalizedString("Clear", comment: "") static let preview = NSLocalizedString("Preview", comment: "") static let overview = NSLocalizedString("Overview", comment: "") + static let edit = NSLocalizedString("Edit", comment: "") + static let save = NSLocalizedString("Save", comment: "") } } diff --git a/Freetime.xcodeproj/project.pbxproj b/Freetime.xcodeproj/project.pbxproj index 6b545a431..d1d996ade 100644 --- a/Freetime.xcodeproj/project.pbxproj +++ b/Freetime.xcodeproj/project.pbxproj @@ -514,6 +514,8 @@ BDB6AA6A215FBC35009BB73C /* RepositoryBranchesCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB6AA63215FBC35009BB73C /* RepositoryBranchesCell.swift */; }; BDB6AA6B215FBC35009BB73C /* GitHubClient+RepositoryBranches.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB6AA64215FBC35009BB73C /* GitHubClient+RepositoryBranches.swift */; }; BDB6AA762165B8EA009BB73C /* SwitchBranches.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDB6AA752165B8EA009BB73C /* SwitchBranches.swift */; }; + BDCEBE0B21E1853200D31677 /* EditIssueTitleViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCEBE0A21E1853200D31677 /* EditIssueTitleViewController.swift */; }; + BDCEBE1821E24A3600D31677 /* EditIssueTitleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCEBE1721E24A3600D31677 /* EditIssueTitleTests.swift */; }; C0E3CD4B21BAE49B00185B57 /* NSRegularExpression+StaticString.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0E3CD4A21BAE49B00185B57 /* NSRegularExpression+StaticString.swift */; }; C0E3CD4D21BAE65000185B57 /* UIImage+StaticString.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0E3CD4C21BAE65000185B57 /* UIImage+StaticString.swift */; }; D8BAD0601FDA0A1A00C41071 /* LabelListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = D8BAD05F1FDA0A1A00C41071 /* LabelListCell.swift */; }; @@ -1119,6 +1121,8 @@ BDB6AA63215FBC35009BB73C /* RepositoryBranchesCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = RepositoryBranchesCell.swift; sourceTree = ""; }; BDB6AA64215FBC35009BB73C /* GitHubClient+RepositoryBranches.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "GitHubClient+RepositoryBranches.swift"; sourceTree = ""; }; BDB6AA752165B8EA009BB73C /* SwitchBranches.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwitchBranches.swift; sourceTree = ""; }; + BDCEBE0A21E1853200D31677 /* EditIssueTitleViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditIssueTitleViewController.swift; sourceTree = ""; }; + BDCEBE1721E24A3600D31677 /* EditIssueTitleTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditIssueTitleTests.swift; sourceTree = ""; }; C0E3CD4A21BAE49B00185B57 /* NSRegularExpression+StaticString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSRegularExpression+StaticString.swift"; sourceTree = ""; }; C0E3CD4C21BAE65000185B57 /* UIImage+StaticString.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIImage+StaticString.swift"; sourceTree = ""; }; D396E0DA66FED629384A84BC /* Pods_FreetimeWatch.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FreetimeWatch.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -1335,6 +1339,7 @@ 29AF1E801F8AAB1D0008A0EF /* EditComment */, 291929431F3EAAAF0012067B /* Files */, 29EE44451F19D5C100B05ED3 /* GithubClient+Issues.swift */, + BDCEBE0921E1850B00D31677 /* EditTitle */, 294563EB1EE5012100DBCD35 /* Issue+IssueType.swift */, 292CD3C41F0C9EB200D3D57B /* IssueCommentModelHandling.swift */, 291929461F3EAB250012067B /* IssueDetailsModel.swift */, @@ -1722,6 +1727,7 @@ 29827D7121AA5D7F00A1B293 /* BookmarkViewControllerTests.swift */, 291E988421976B5600E5EED9 /* ContentWidthUtilsTests.swift */, BD1DC657218DFE3C004DAC42 /* DetectShortlinkTests.swift */, + BDCEBE1721E24A3600D31677 /* EditIssueTitleTests.swift */, 2981A8A61EFEBEF900E25EF1 /* EmojiTests.swift */, 2986B35D1FD462AA00E3CFC6 /* FilePathTests.swift */, 296B4E331F7C80B800C16887 /* GraphQLIDDecodeTests.swift */, @@ -2327,6 +2333,14 @@ path = RepositoryBranches; sourceTree = ""; }; + BDCEBE0921E1850B00D31677 /* EditTitle */ = { + isa = PBXGroup; + children = ( + BDCEBE0A21E1853200D31677 /* EditIssueTitleViewController.swift */, + ); + path = EditTitle; + sourceTree = ""; + }; CF4CC0BFE456879DD6DBC714 /* Frameworks */ = { isa = PBXGroup; children = ( @@ -3390,6 +3404,7 @@ 29351EA02079246400FF8C17 /* CodeBlockModel.swift in Sources */, 290744BE1F268F8700FD9E48 /* UserAutocomplete+GraphQL.swift in Sources */, 290744BC1F268D8300FD9E48 /* UserAutocomplete.swift in Sources */, + BDCEBE0B21E1853200D31677 /* EditIssueTitleViewController.swift in Sources */, 299F63DA205DD86E0015D901 /* StyledTextViewCell.swift in Sources */, 292CD3D01F0DBB5C00D3D57B /* WebviewCellHeightCache.swift in Sources */, ); @@ -3418,6 +3433,7 @@ 29827CA321A9C6A600A1B293 /* BookmarkIDCloudStoreTests.swift in Sources */, 293A45781F296B7E00DD1006 /* ListTestKit.swift in Sources */, 296B4E341F7C80B800C16887 /* GraphQLIDDecodeTests.swift in Sources */, + BDCEBE1821E24A3600D31677 /* EditIssueTitleTests.swift in Sources */, 29827D7421AA5DA300A1B293 /* ViewControllerTestUtil.swift in Sources */, BDB6AA762165B8EA009BB73C /* SwitchBranches.swift in Sources */, DC5C02C71F9C71C400E80B9F /* SearchRecentViewModelTests.swift in Sources */, diff --git a/Freetime.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Freetime.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 000000000..0c67376eb --- /dev/null +++ b/Freetime.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,5 @@ + + + + + diff --git a/FreetimeTests/EditIssueTitleTests.swift b/FreetimeTests/EditIssueTitleTests.swift new file mode 100644 index 000000000..3a5b68d8c --- /dev/null +++ b/FreetimeTests/EditIssueTitleTests.swift @@ -0,0 +1,54 @@ +// +// EditIssueTitleTests.swift +// FreetimeTests +// +// Created by B_Litwin on 1/6/19. +// Copyright © 2019 Ryan Nystrom. All rights reserved. +// + +import XCTest +@testable import Freetime + +class EditIssueTitleTests: XCTestCase { + + func test_editIssueTitleViewController() { + let editIssueTitleViewController = EditIssueTitleViewController( + issueTitle: "text" + ) + + editIssueTitleViewController.viewDidLoad() + + let textView = editIssueTitleViewController.view.subviews.first(where: { + $0 is UITextView + }) as! UITextView + + /* + The editIssueTitle flag in EditIssueTitleViewController + is used to communicate to the IssueManagingContextController + whether to send a network request to update the issue title. + Null should signal that a request is not necessary, + and a text value should signal that an update request is neccessary. + + onSave() or onCancel() will dismiss the ViewController, so only need + to test the editIssueTitle flag once, directly after one of those is called + + The following tests verify that the only time the flag is set to send a + network request is under the conditions that a new title has been entered + and onSave() is called + */ + + XCTAssertNil(editIssueTitleViewController.editedIssueTitle) + + editIssueTitleViewController.onSave() + XCTAssertNil(editIssueTitleViewController.editedIssueTitle) + + textView.text = "new text" + + editIssueTitleViewController.onCancel() + XCTAssertNil(editIssueTitleViewController.editedIssueTitle) + + editIssueTitleViewController.onSave() + XCTAssert(editIssueTitleViewController.editedIssueTitle == "new text") + } + +} diff --git a/Local Pods/GitHubAPI/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Local Pods/GitHubAPI/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..919434a62 --- /dev/null +++ b/Local Pods/GitHubAPI/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Local Pods/GitHubAPI/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Local Pods/GitHubAPI/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 000000000..18d981003 --- /dev/null +++ b/Local Pods/GitHubAPI/Pods/Pods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/Local Pods/GitHubAPI/V3EditIssueTitleRequest.swift b/Local Pods/GitHubAPI/V3EditIssueTitleRequest.swift new file mode 100644 index 000000000..fd6f38eaf --- /dev/null +++ b/Local Pods/GitHubAPI/V3EditIssueTitleRequest.swift @@ -0,0 +1,31 @@ +// +// V3EditIssueTitleRequest.swift +// Pods +// +// Created by B_Litwin on 1/6/19. +// + +import Foundation + +public struct V3EditIssueTitleRequest: V3Request { + public typealias ResponseType = V3StatusCodeResponse + + public var pathComponents: [String] { + return ["repos", owner, repo, "issues", "\(issueNumber)"] + } + + public var method: HTTPMethod { return .patch } + public var parameters: [String : Any]? { return ["title": title] } + + public let owner: String + public let repo: String + public let issueNumber: Int + public let title: String + + public init(owner: String, repo: String, issueNumber: Int, title: String) { + self.owner = owner + self.repo = repo + self.issueNumber = issueNumber + self.title = title + } +} diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index cef9e533a..d1540b3e6 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -926,6 +926,8 @@ BCCB959FC22E82D5604A37B4BF4E6F66 /* plaintext.c in Sources */ = {isa = PBXBuildFile; fileRef = 658BDFCBBFC8916D08D007A3DFCF7448 /* plaintext.c */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; BD157450589A43C987A9B6E7CF51BDFA /* IGListSupplementaryViewSource.h in Headers */ = {isa = PBXBuildFile; fileRef = C7217A7A499A88A3170D9198DE5554E2 /* IGListSupplementaryViewSource.h */; settings = {ATTRIBUTES = (Public, ); }; }; BD2189F21D59095F39C754142F9E640B /* FLEXFileBrowserSearchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FEBC4B78DCD4466B22E424237BBE680 /* FLEXFileBrowserSearchOperation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDCEBE1521E2440200D31677 /* V3EditIssueTitleRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCEBE1421E2440200D31677 /* V3EditIssueTitleRequest.swift */; }; + BDCEBE1621E2440200D31677 /* V3EditIssueTitleRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDCEBE1421E2440200D31677 /* V3EditIssueTitleRequest.swift */; }; BDD7D2696958AAD8276768B1293E3A51 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0317B543DD06473C8C773AFE162FA7F2 /* Foundation.framework */; }; BE0C9DB3628D6A8A7AEF7F72A4F29354 /* GraphQLInputValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = D64D3D389A8F84580281BFA176A33168 /* GraphQLInputValue.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; BE14641F7845AB775EDF56FAB76BD92A /* FLEXDictionaryExplorerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 32B838127266470CD81D92FB69872B73 /* FLEXDictionaryExplorerViewController.m */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; }; @@ -1802,7 +1804,7 @@ 00265A9A1F4156A0B3DCEC9AAB18C956 /* FMDatabaseQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMDatabaseQueue.m; path = src/fmdb/FMDatabaseQueue.m; sourceTree = ""; }; 00654A5546F4D42BC3AEB51C5A70A748 /* FBSnapshotTestCase-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-prefix.pch"; sourceTree = ""; }; 006BE0B25B3FFAAF323DA337B0E0CED9 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../DateAgo-watchOS/Info.plist"; sourceTree = ""; }; - 0092694D97C6AC57B36530C0C3F3B34C /* Apollo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Apollo.framework; path = "Apollo-watchOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0092694D97C6AC57B36530C0C3F3B34C /* Apollo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Apollo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 01422617581410785BA5147AAD37BE12 /* ResultOrPromise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResultOrPromise.swift; path = Sources/Apollo/ResultOrPromise.swift; sourceTree = ""; }; 01C7D5B911F190BBB3489C8FD5962089 /* Pods-FreetimeWatch Extension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeWatch Extension.debug.xcconfig"; sourceTree = ""; }; 01D2F334978645C58F7375487CD79995 /* FXPageControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FXPageControl.m; path = Sources/FXPageControl.m; sourceTree = ""; }; @@ -1810,18 +1812,18 @@ 02037216ABF522CE0E47A262A050B8C0 /* MessageView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageView.swift; path = MessageViewController/MessageView.swift; sourceTree = ""; }; 0212415AD92F521A58685028B330FFB0 /* NSNumber+IGListDiffable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSNumber+IGListDiffable.h"; path = "Source/Common/NSNumber+IGListDiffable.h"; sourceTree = ""; }; 021341BF8B29B2ED378EAA26F2B0C5E2 /* Crashlytics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Crashlytics.h; path = iOS/Crashlytics.framework/Headers/Crashlytics.h; sourceTree = ""; }; - 023D263F300F7D75C84185383FFBFE46 /* armasm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = armasm.min.js; path = Pod/Assets/Highlighter/languages/armasm.min.js; sourceTree = ""; }; + 023D263F300F7D75C84185383FFBFE46 /* armasm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = armasm.min.js; path = Pod/Assets/Highlighter/languages/armasm.min.js; sourceTree = ""; }; 029C1C658B4965DC658230A66482DC97 /* TUSafariActivity-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TUSafariActivity-prefix.pch"; sourceTree = ""; }; 02B8EF6BF0D13AB4FC738AD366699780 /* chunk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chunk.h; path = Source/cmark_gfm/include/chunk.h; sourceTree = ""; }; 0317B543DD06473C8C773AFE162FA7F2 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; 031D8D2612CB569F553DA36875FA110C /* FLEXKeyboardHelpViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardHelpViewController.h; path = Classes/Utility/FLEXKeyboardHelpViewController.h; sourceTree = ""; }; - 03490ADA45311673331280E30B66F557 /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fi.lproj; path = Pod/Assets/fi.lproj; sourceTree = ""; }; - 036D65A9BAB4859617C36FB638CC5776 /* protobuf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = protobuf.min.js; path = Pod/Assets/Highlighter/languages/protobuf.min.js; sourceTree = ""; }; + 03490ADA45311673331280E30B66F557 /* fi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = fi.lproj; path = Pod/Assets/fi.lproj; sourceTree = ""; }; + 036D65A9BAB4859617C36FB638CC5776 /* protobuf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = protobuf.min.js; path = Pod/Assets/Highlighter/languages/protobuf.min.js; sourceTree = ""; }; 0397D24EE065A7E18DF656CD3B407AC0 /* SwipeCellKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwipeCellKit-umbrella.h"; sourceTree = ""; }; 03E4E55CB5DD63E13647705950EED301 /* Alamofire-watchOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Alamofire-watchOS-dummy.m"; path = "../Alamofire-watchOS/Alamofire-watchOS-dummy.m"; sourceTree = ""; }; - 03E543049327FCE9FE74815EACF3906F /* atelier-forest-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-forest-light.min.css"; path = "Pod/Assets/styles/atelier-forest-light.min.css"; sourceTree = ""; }; + 03E543049327FCE9FE74815EACF3906F /* atelier-forest-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-forest-light.min.css"; path = "Pod/Assets/styles/atelier-forest-light.min.css"; sourceTree = ""; }; 042018D2BA0491D9C0175D7BA05F39D0 /* SwipeExpanding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeExpanding.swift; path = Source/SwipeExpanding.swift; sourceTree = ""; }; - 0444977E7DD6538D384512997178F562 /* json.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = json.min.js; path = Pod/Assets/Highlighter/languages/json.min.js; sourceTree = ""; }; + 0444977E7DD6538D384512997178F562 /* json.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = json.min.js; path = Pod/Assets/Highlighter/languages/json.min.js; sourceTree = ""; }; 050F742355A823843B2E4A6615E05F71 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = ""; }; 0529F09C4A98F26780FFB4151A0E382E /* registry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = registry.h; path = Source/cmark_gfm/include/registry.h; sourceTree = ""; }; 0531F383AAF4418D637BDDC2FDFC9812 /* CGSize+LRUCachable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGSize+LRUCachable.swift"; path = "Source/CGSize+LRUCachable.swift"; sourceTree = ""; }; @@ -1829,9 +1831,9 @@ 058600640A7C591E4F615BBE2186B8B3 /* SquawkViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SquawkViewDelegate.swift; path = Source/SquawkViewDelegate.swift; sourceTree = ""; }; 05891400112170C00595F7FD67A89D14 /* DropdownTitleView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DropdownTitleView.swift; path = Source/DropdownTitleView.swift; sourceTree = ""; }; 05CAEBFB011538096E65AF65077397EC /* FLEXMultilineTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMultilineTableViewCell.m; path = Classes/Utility/FLEXMultilineTableViewCell.m; sourceTree = ""; }; - 0601192BC8574FBC1263C75DF2046139 /* cpp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = cpp.min.js; path = Pod/Assets/Highlighter/languages/cpp.min.js; sourceTree = ""; }; + 0601192BC8574FBC1263C75DF2046139 /* cpp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = cpp.min.js; path = Pod/Assets/Highlighter/languages/cpp.min.js; sourceTree = ""; }; 061FFB0E72566CD8DAFF0F34A825CC26 /* IGListSectionMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSectionMap.h; path = Source/Internal/IGListSectionMap.h; sourceTree = ""; }; - 064E59C7405AA99F0A6C4B10DB795B22 /* darcula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = darcula.min.css; path = Pod/Assets/styles/darcula.min.css; sourceTree = ""; }; + 064E59C7405AA99F0A6C4B10DB795B22 /* darcula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = darcula.min.css; path = Pod/Assets/styles/darcula.min.css; sourceTree = ""; }; 06686310AD7D58066C0801591C75156C /* Apollo-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Apollo-iOS.xcconfig"; sourceTree = ""; }; 0687C7FEF15633BA34C5F26BA653FAE9 /* FLEXCookiesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXCookiesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXCookiesTableViewController.h; sourceTree = ""; }; 06BBD73E565CBBFA93597C5E2A3A8D5E /* FLEXArgumentInputNotSupportedView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputNotSupportedView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.m; sourceTree = ""; }; @@ -1844,7 +1846,7 @@ 0761537E430B1566C99FDAA2D56E8BD0 /* FLEXImagePreviewViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXImagePreviewViewController.m; path = Classes/ViewHierarchy/FLEXImagePreviewViewController.m; sourceTree = ""; }; 07718F5FF079BBA44661EDF7B5B7E386 /* FLEXNetworkSettingsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkSettingsTableViewController.h; path = Classes/Network/FLEXNetworkSettingsTableViewController.h; sourceTree = ""; }; 07843EC5172B6DDE87585AF70C617801 /* Squawk+Configuration.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Squawk+Configuration.swift"; path = "Source/Squawk+Configuration.swift"; sourceTree = ""; }; - 07A6006C1A35B6F932FD098C4A5D5522 /* arena.c */ = {isa = PBXFileReference; includeInIndex = 1; name = arena.c; path = Source/cmark_gfm/arena.c; sourceTree = ""; }; + 07A6006C1A35B6F932FD098C4A5D5522 /* arena.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = arena.c; path = Source/cmark_gfm/arena.c; sourceTree = ""; }; 07CE82BA1EA674214BCF5EF423CC663D /* IGListCollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCollectionView.h; path = Source/IGListCollectionView.h; sourceTree = ""; }; 07E1C07EC3BF4B0A488CE8B7DBE6F76B /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/UIView+WebCache.h"; sourceTree = ""; }; 07EC6055A105A0B5487C3A83EBFAAB39 /* ConstraintLayoutGuide+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintLayoutGuide+Extensions.swift"; path = "Source/ConstraintLayoutGuide+Extensions.swift"; sourceTree = ""; }; @@ -1853,66 +1855,66 @@ 08F70303B2F4891F31B200AE519DFC31 /* IGListSectionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListSectionController.m; path = Source/IGListSectionController.m; sourceTree = ""; }; 0906264534D16E0D5F3FC100936BB83D /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Sources/Apollo/Result.swift; sourceTree = ""; }; 090B61B48E5198BAD1EC0DD300DC679F /* FLEXArgumentInputTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputTextView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.m; sourceTree = ""; }; - 0919C59001B36920AB435D99C0ED81CC /* mathematica.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = mathematica.min.js; path = Pod/Assets/Highlighter/languages/mathematica.min.js; sourceTree = ""; }; + 0919C59001B36920AB435D99C0ED81CC /* mathematica.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = mathematica.min.js; path = Pod/Assets/Highlighter/languages/mathematica.min.js; sourceTree = ""; }; 093180354BB7D4531A668E7DBC629589 /* UIFont+UnionTraits.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIFont+UnionTraits.swift"; path = "Source/UIFont+UnionTraits.swift"; sourceTree = ""; }; 0984C8F20A11A28D66223C6CCA16C75F /* IGListMoveIndexInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListMoveIndexInternal.h; path = Source/Common/Internal/IGListMoveIndexInternal.h; sourceTree = ""; }; 098CB2B7144ABB4FD2A451F74D80FD56 /* IGListAdapterInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterInternal.h; path = Source/Internal/IGListAdapterInternal.h; sourceTree = ""; }; 098D387C48B5E7A43310CAFDCDFD6503 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 09B0C5C0DD3DBC5489BA62254E372FD7 /* atelier-estuary-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-estuary-light.min.css"; path = "Pod/Assets/styles/atelier-estuary-light.min.css"; sourceTree = ""; }; + 09B0C5C0DD3DBC5489BA62254E372FD7 /* atelier-estuary-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-estuary-light.min.css"; path = "Pod/Assets/styles/atelier-estuary-light.min.css"; sourceTree = ""; }; 09C77752496D96095EC478DF5E2966FB /* FLEXGlobalsTableViewControllerEntry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewControllerEntry.m; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.m; sourceTree = ""; }; 09DACEEA206E7814F98165B372FD9EAC /* IGListArrayUtilsInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListArrayUtilsInternal.h; path = Source/Common/Internal/IGListArrayUtilsInternal.h; sourceTree = ""; }; - 0A02B0F16F38B988E692085537D22706 /* Apollo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Apollo.framework; path = "Apollo-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 0A5C946EAFFB81581AB517B84AA11ED3 /* dos.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = dos.min.js; path = Pod/Assets/Highlighter/languages/dos.min.js; sourceTree = ""; }; + 0A02B0F16F38B988E692085537D22706 /* Apollo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Apollo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0A5C946EAFFB81581AB517B84AA11ED3 /* dos.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = dos.min.js; path = Pod/Assets/Highlighter/languages/dos.min.js; sourceTree = ""; }; 0A7A44AEDCA732CC8C66312DC48F69EE /* Block+TableRow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Block+TableRow.swift"; path = "Source/Block+TableRow.swift"; sourceTree = ""; }; - 0A81A2A70E870087E5596B57028FDCD2 /* atom-one-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atom-one-light.min.css"; path = "Pod/Assets/styles/atom-one-light.min.css"; sourceTree = ""; }; + 0A81A2A70E870087E5596B57028FDCD2 /* atom-one-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atom-one-light.min.css"; path = "Pod/Assets/styles/atom-one-light.min.css"; sourceTree = ""; }; 0A92FC037E4CE468A80E82F0060F1D12 /* MessageViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MessageViewController.xcconfig; sourceTree = ""; }; 0AADC86F068CBFFE2C4A97DA2CEA4501 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - 0AE50E3CF9C219A44A12E73F63B3F8DD /* xl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = xl.min.js; path = Pod/Assets/Highlighter/languages/xl.min.js; sourceTree = ""; }; - 0B9D5B015378D36DB30D986D7A5B41B9 /* cmake.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = cmake.min.js; path = Pod/Assets/Highlighter/languages/cmake.min.js; sourceTree = ""; }; - 0BB22F9710DC5E8AB38CA9CC4B85DF4B /* ruleslanguage.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ruleslanguage.min.js; path = Pod/Assets/Highlighter/languages/ruleslanguage.min.js; sourceTree = ""; }; + 0AE50E3CF9C219A44A12E73F63B3F8DD /* xl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = xl.min.js; path = Pod/Assets/Highlighter/languages/xl.min.js; sourceTree = ""; }; + 0B9D5B015378D36DB30D986D7A5B41B9 /* cmake.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = cmake.min.js; path = Pod/Assets/Highlighter/languages/cmake.min.js; sourceTree = ""; }; + 0BB22F9710DC5E8AB38CA9CC4B85DF4B /* ruleslanguage.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ruleslanguage.min.js; path = Pod/Assets/Highlighter/languages/ruleslanguage.min.js; sourceTree = ""; }; 0BD2C439D9938F8CA37642CE7C84EC63 /* FLEXArgumentInputStringView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStringView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.h; sourceTree = ""; }; 0C02AD831CCBCB31854BE85C2E96FB2D /* StyledTextBuilder.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledTextBuilder.swift; path = Source/StyledTextBuilder.swift; sourceTree = ""; }; 0C25EF3525F33BDAD9D4090990D5EDAE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../GitHubSession-watchOS/Info.plist"; sourceTree = ""; }; - 0C67101E0710A8C4D57CCA7294C38AA9 /* twig.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = twig.min.js; path = Pod/Assets/Highlighter/languages/twig.min.js; sourceTree = ""; }; + 0C67101E0710A8C4D57CCA7294C38AA9 /* twig.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = twig.min.js; path = Pod/Assets/Highlighter/languages/twig.min.js; sourceTree = ""; }; 0D00266980B2308257EB7916233EA2DB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 0D6AF44B8005F8D3F080EB1877AB42A5 /* foundation.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = foundation.min.css; path = Pod/Assets/styles/foundation.min.css; sourceTree = ""; }; + 0D6AF44B8005F8D3F080EB1877AB42A5 /* foundation.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = foundation.min.css; path = Pod/Assets/styles/foundation.min.css; sourceTree = ""; }; 0D8CB047B6F7BEE8A8A2DB2A3DD4A6B9 /* inlines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = inlines.h; path = Source/cmark_gfm/include/inlines.h; sourceTree = ""; }; 0DB3159CED66750825B9CC1845D22723 /* FLEXArgumentInputColorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputColorView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.m; sourceTree = ""; }; 0E28363A060AF94BED53931000F3C4AB /* TableRow.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TableRow.swift; path = Source/TableRow.swift; sourceTree = ""; }; - 0E86204A629159883A8B9B60746B4DE0 /* atelier-lakeside-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-lakeside-dark.min.css"; path = "Pod/Assets/styles/atelier-lakeside-dark.min.css"; sourceTree = ""; }; - 0EB308990B528AC34A7F9D3405AEADC4 /* HandlerInvocationTiming.html */ = {isa = PBXFileReference; includeInIndex = 1; name = HandlerInvocationTiming.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html; sourceTree = ""; }; + 0E86204A629159883A8B9B60746B4DE0 /* atelier-lakeside-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-lakeside-dark.min.css"; path = "Pod/Assets/styles/atelier-lakeside-dark.min.css"; sourceTree = ""; }; + 0EB308990B528AC34A7F9D3405AEADC4 /* HandlerInvocationTiming.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = HandlerInvocationTiming.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html; sourceTree = ""; }; 0ED538E3E526DA9A622D579170BF250E /* FLEXFieldEditorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorView.h; path = Classes/Editing/FLEXFieldEditorView.h; sourceTree = ""; }; 0F21CE108FF688F29A17AC4DED7DB9DA /* IGListBatchUpdateData+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListBatchUpdateData+DebugDescription.h"; path = "Source/Internal/IGListBatchUpdateData+DebugDescription.h"; sourceTree = ""; }; 0F55C56FE6A557230C3470456A4AE4F4 /* Pods-Freetime-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Freetime-dummy.m"; sourceTree = ""; }; - 0FA53529E2E6D16F81C55474A3C9EA1C /* tomorrow-night.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "tomorrow-night.min.css"; path = "Pod/Assets/styles/tomorrow-night.min.css"; sourceTree = ""; }; + 0FA53529E2E6D16F81C55474A3C9EA1C /* tomorrow-night.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "tomorrow-night.min.css"; path = "Pod/Assets/styles/tomorrow-night.min.css"; sourceTree = ""; }; 0FD0C77039DB7BB8A119793BDB02149D /* FLEXViewExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXViewExplorerViewController.h; path = Classes/ObjectExplorers/FLEXViewExplorerViewController.h; sourceTree = ""; }; 1015732C4E9361223A22D301656BD2A9 /* IGListAssert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAssert.h; path = Source/Common/IGListAssert.h; sourceTree = ""; }; 10336733D43B97AB2EE5DE284509AA35 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 10605CA78904E537A307066FFA4B6F8C /* FLEXInstancesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXInstancesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXInstancesTableViewController.h; sourceTree = ""; }; - 107F6504F489B18270B307BC80557BA7 /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Enums.html; path = docs/Enums.html; sourceTree = ""; }; + 107F6504F489B18270B307BC80557BA7 /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Enums.html; path = docs/Enums.html; sourceTree = ""; }; 1084F89741565A300C950409CC92E1E0 /* UIAlertAction+Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIAlertAction+Image.swift"; path = "ImageAlertAction/Classes/UIAlertAction+Image.swift"; sourceTree = ""; }; 1089864E670F133ADB11AD1F0900CAC6 /* FLEXExplorerToolbar.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXExplorerToolbar.h; path = Classes/Toolbar/FLEXExplorerToolbar.h; sourceTree = ""; }; - 108B3D597844EF8B8B927499086D1814 /* avrasm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = avrasm.min.js; path = Pod/Assets/Highlighter/languages/avrasm.min.js; sourceTree = ""; }; + 108B3D597844EF8B8B927499086D1814 /* avrasm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = avrasm.min.js; path = Pod/Assets/Highlighter/languages/avrasm.min.js; sourceTree = ""; }; 1091DA3030EBC0F2E4DE2B3BD0E2552A /* FLEXFileBrowserSearchOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserSearchOperation.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.m; sourceTree = ""; }; 1120EDB55AD0A6F48DF617DEA4FBB3DC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 1127B8101B3906B879744AA31539FD9D /* Promise.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Promise.swift; path = Sources/Apollo/Promise.swift; sourceTree = ""; }; 121F40537F97ABCB1DA1096045487A18 /* SwipeAction.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeAction.swift; path = Source/SwipeAction.swift; sourceTree = ""; }; 1230E1B99F1F617025EE5FE51C264FD9 /* FMDatabaseQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMDatabaseQueue.h; path = src/fmdb/FMDatabaseQueue.h; sourceTree = ""; }; - 123A62BFFE5C323662D0F819F4098DB8 /* ExpansionFulfillmentStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = ExpansionFulfillmentStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/ExpansionFulfillmentStyle.html; sourceTree = ""; }; + 123A62BFFE5C323662D0F819F4098DB8 /* ExpansionFulfillmentStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ExpansionFulfillmentStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/ExpansionFulfillmentStyle.html; sourceTree = ""; }; 128FBBABDE88F88051C31992125CDF29 /* HTMLString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTMLString.swift; path = Sources/HTMLString/HTMLString.swift; sourceTree = ""; }; 12B64437C6CB79E47F6B061F0600F1D0 /* IGListUpdatingDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListUpdatingDelegate.h; path = Source/IGListUpdatingDelegate.h; sourceTree = ""; }; - 12BB736117744F10BF210DE8A6C73308 /* vala.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = vala.min.js; path = Pod/Assets/Highlighter/languages/vala.min.js; sourceTree = ""; }; - 12D465DB236F6F070A5AA485C43812DC /* swift.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = swift.min.js; path = Pod/Assets/Highlighter/languages/swift.min.js; sourceTree = ""; }; - 133199B5622247391D5122AD9EFF985F /* abnf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = abnf.min.js; path = Pod/Assets/Highlighter/languages/abnf.min.js; sourceTree = ""; }; + 12BB736117744F10BF210DE8A6C73308 /* vala.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = vala.min.js; path = Pod/Assets/Highlighter/languages/vala.min.js; sourceTree = ""; }; + 12D465DB236F6F070A5AA485C43812DC /* swift.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = swift.min.js; path = Pod/Assets/Highlighter/languages/swift.min.js; sourceTree = ""; }; + 133199B5622247391D5122AD9EFF985F /* abnf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = abnf.min.js; path = Pod/Assets/Highlighter/languages/abnf.min.js; sourceTree = ""; }; 133492071AE52C82E9FF421A9A1F2BA5 /* ConstraintRelatableTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelatableTarget.swift; path = Source/ConstraintRelatableTarget.swift; sourceTree = ""; }; 1399CE8B10D025A9620BD02B1FF65028 /* Alamofire-watchOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Alamofire-watchOS-umbrella.h"; path = "../Alamofire-watchOS/Alamofire-watchOS-umbrella.h"; sourceTree = ""; }; 139E95B09DA5D3CDD9065A632ACC59F7 /* UIViewController+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+Extensions.swift"; path = "ContextMenu/UIViewController+Extensions.swift"; sourceTree = ""; }; 13D772A3A231A4DD92A42B9F28E3C00A /* FLEXArgumentInputSwitchView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputSwitchView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.h; sourceTree = ""; }; 1446CE554D641AB0BF1B4EA68DBF0988 /* V3ReleaseRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3ReleaseRequest.swift; path = GitHubAPI/V3ReleaseRequest.swift; sourceTree = ""; }; - 145740C61530F128D87431352BE53DBA /* man.c */ = {isa = PBXFileReference; includeInIndex = 1; name = man.c; path = Source/cmark_gfm/man.c; sourceTree = ""; }; + 145740C61530F128D87431352BE53DBA /* man.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = man.c; path = Source/cmark_gfm/man.c; sourceTree = ""; }; 1492AB249097020F8F46A725B10CF4BC /* Squawk-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Squawk-prefix.pch"; sourceTree = ""; }; 14D1BA033D8D693B0816ABAFAC5756D9 /* table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = table.h; path = Source/cmark_gfm/include/table.h; sourceTree = ""; }; - 1508B1E803129A4A9597DF02E821C0C1 /* qtcreator_light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = qtcreator_light.min.css; path = Pod/Assets/styles/qtcreator_light.min.css; sourceTree = ""; }; + 1508B1E803129A4A9597DF02E821C0C1 /* qtcreator_light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = qtcreator_light.min.css; path = Pod/Assets/styles/qtcreator_light.min.css; sourceTree = ""; }; 150F4F01865A8FAD8B0F5D74A3AC1990 /* FLEXSetExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSetExplorerViewController.m; path = Classes/ObjectExplorers/FLEXSetExplorerViewController.m; sourceTree = ""; }; 15B5996FF4B3B2BAA6F44873ACCB0908 /* NYTPhotoViewerSinglePhotoDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoViewerSinglePhotoDataSource.h; path = NYTPhotoViewer/NYTPhotoViewerSinglePhotoDataSource.h; sourceTree = ""; }; 15B9EA93A6F79E15DF449AB6D10BDA68 /* FLEXGlobalsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXGlobalsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXGlobalsTableViewController.m; sourceTree = ""; }; @@ -1922,10 +1924,10 @@ 166AED56C9FCE7112B70D83E40E833A4 /* IGListIndexPathResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListIndexPathResultInternal.h; path = Source/Common/Internal/IGListIndexPathResultInternal.h; sourceTree = ""; }; 168FA157132537610E11A4F24D1D63A5 /* FlatCache-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlatCache-prefix.pch"; sourceTree = ""; }; 16B99B7EA05A9271EFB4B179526E9235 /* Pods-FreetimeWatch Extension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FreetimeWatch Extension-umbrella.h"; sourceTree = ""; }; - 17030125F6AC2B35F76351B956D0E6D3 /* atelier-seaside-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-seaside-dark.min.css"; path = "Pod/Assets/styles/atelier-seaside-dark.min.css"; sourceTree = ""; }; - 1718CBE6E607FB97B6494F6D5A2CAB0C /* Resources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = Resources.bundle; path = "DateAgo-iOS-Resources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - 1764AD5F8D8FA7B0A9540CA1AD1A0454 /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; name = buffer.c; path = Source/cmark_gfm/buffer.c; sourceTree = ""; }; - 17B2F397CF6FB52D491260541F224218 /* vs.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = vs.min.css; path = Pod/Assets/styles/vs.min.css; sourceTree = ""; }; + 17030125F6AC2B35F76351B956D0E6D3 /* atelier-seaside-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-seaside-dark.min.css"; path = "Pod/Assets/styles/atelier-seaside-dark.min.css"; sourceTree = ""; }; + 1718CBE6E607FB97B6494F6D5A2CAB0C /* Resources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Resources.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1764AD5F8D8FA7B0A9540CA1AD1A0454 /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = buffer.c; path = Source/cmark_gfm/buffer.c; sourceTree = ""; }; + 17B2F397CF6FB52D491260541F224218 /* vs.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = vs.min.css; path = Pod/Assets/styles/vs.min.css; sourceTree = ""; }; 17CED74D01760CAFD7FB5FF3F052365D /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/UIImage+MultiFormat.m"; sourceTree = ""; }; 18875F40FF6C1C9C69AECFA23AFF5B2C /* GitHubAPI-watchOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "GitHubAPI-watchOS.modulemap"; path = "../GitHubAPI-watchOS/GitHubAPI-watchOS.modulemap"; sourceTree = ""; }; 18941E6FA569936F10714D2DEE84D79E /* Apollo-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Apollo-iOS-prefix.pch"; sourceTree = ""; }; @@ -1934,31 +1936,31 @@ 18FED3C622702E1E51F2782053B4E431 /* FLEXArgumentInputStructView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputStructView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.h; sourceTree = ""; }; 190A27E5A012CEDD8A2AD279EB40EA78 /* safari-7.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7.png"; path = "Pod/Assets/safari-7.png"; sourceTree = ""; }; 190B4EBA224F32AEC9562CC889815CCE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 19149C5F25EDB61DC6532722CBE0EB61 /* magula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = magula.min.css; path = Pod/Assets/styles/magula.min.css; sourceTree = ""; }; - 195681BAE5EDBAF8EC66FD15EC6CD186 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pl.lproj; path = Pod/Assets/pl.lproj; sourceTree = ""; }; + 19149C5F25EDB61DC6532722CBE0EB61 /* magula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = magula.min.css; path = Pod/Assets/styles/magula.min.css; sourceTree = ""; }; + 195681BAE5EDBAF8EC66FD15EC6CD186 /* pl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = pl.lproj; path = Pod/Assets/pl.lproj; sourceTree = ""; }; 197A787B7B69A20BFB85289D23899B57 /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; 19AAF6A1343CE25BF8E35FF189F42168 /* NYTPhotoTransitionAnimator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoTransitionAnimator.m; path = NYTPhotoViewer/NYTPhotoTransitionAnimator.m; sourceTree = ""; }; 1A00448F2DB9CA660987E2765AAF551E /* FLEXTableListViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableListViewController.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.h; sourceTree = ""; }; 1A471E87D14C87219A57DC73AB4E69D3 /* FLEXArgumentInputViewFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputViewFactory.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.h; sourceTree = ""; }; 1A698A31C01BD57B85A0FB9916CDC300 /* Pods-FreetimeWatch Extension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-FreetimeWatch Extension-dummy.m"; sourceTree = ""; }; - 1A6C904D5C3825382C7401D8F8ABF3FD /* SwipeAction.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeAction.html; path = docs/Classes/SwipeAction.html; sourceTree = ""; }; + 1A6C904D5C3825382C7401D8F8ABF3FD /* SwipeAction.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeAction.html; path = docs/Classes/SwipeAction.html; sourceTree = ""; }; 1ACF9BEDFA7B0F49D3EA0641B9CEC0E6 /* GitHubAPI-watchOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GitHubAPI-watchOS-prefix.pch"; path = "../GitHubAPI-watchOS/GitHubAPI-watchOS-prefix.pch"; sourceTree = ""; }; 1B0EB5AE96A3EE516E80F5D1E78F1D70 /* IGListAdapterUpdater+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListAdapterUpdater+DebugDescription.m"; path = "Source/Internal/IGListAdapterUpdater+DebugDescription.m"; sourceTree = ""; }; 1B39B0B11D411B6EB1D7EC92450A7351 /* ConstraintViewDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintViewDSL.swift; path = Source/ConstraintViewDSL.swift; sourceTree = ""; }; - 1B6437957641EE3F8A6EBF0895AA2616 /* tap.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = tap.min.js; path = Pod/Assets/Highlighter/languages/tap.min.js; sourceTree = ""; }; + 1B6437957641EE3F8A6EBF0895AA2616 /* tap.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = tap.min.js; path = Pod/Assets/Highlighter/languages/tap.min.js; sourceTree = ""; }; 1BD142902A69983128EAC62CD704C315 /* Pods-Freetime.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Freetime.release.xcconfig"; sourceTree = ""; }; 1BD63007D7CDFF8030A751366F58CC02 /* ButtonBarPagerTabStripViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ButtonBarPagerTabStripViewController.swift; path = Sources/ButtonBarPagerTabStripViewController.swift; sourceTree = ""; }; 1BFE43DE691214C16CDAC0D7D2299067 /* FLEX.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FLEX.modulemap; sourceTree = ""; }; 1C1BBABA4B05229F8EE3C0D674F0D7F4 /* FLEXArgumentInputSwitchView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputSwitchView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputSwitchView.m; sourceTree = ""; }; 1CB7BAFA962D3BCC0E66689081B3C2C1 /* AlamofireNetworkActivityIndicator.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AlamofireNetworkActivityIndicator.xcconfig; sourceTree = ""; }; 1CFEB3A51A1F0DCB3B60F6C98C7F926C /* GitHubSession-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GitHubSession-iOS-dummy.m"; sourceTree = ""; }; - 1D052F77422BC6464982370699D440FE /* gradle.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = gradle.min.js; path = Pod/Assets/Highlighter/languages/gradle.min.js; sourceTree = ""; }; + 1D052F77422BC6464982370699D440FE /* gradle.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = gradle.min.js; path = Pod/Assets/Highlighter/languages/gradle.min.js; sourceTree = ""; }; 1D0A5B2DE6AEFE4AB29A6F6D557F48AE /* GraphQLDependencyTracker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLDependencyTracker.swift; path = Sources/Apollo/GraphQLDependencyTracker.swift; sourceTree = ""; }; 1D200CDE2CE8529C8B48BE5E45CFC710 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 1D4EEDFABD526774D3E3FDA0AABE3E3F /* ApolloStore.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApolloStore.swift; path = Sources/Apollo/ApolloStore.swift; sourceTree = ""; }; - 1D667F500F47AFC288B4C84475A3C0D0 /* StringHelpers.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = StringHelpers.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 1D667F500F47AFC288B4C84475A3C0D0 /* StringHelpers.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = StringHelpers.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 1D7AE3D53265D27D942C1E3EF3309FD7 /* ResourceBundle-Resources-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-Resources-Info.plist"; sourceTree = ""; }; - 1D812DD4E0FE2FF638EAF96050F7D27C /* rust.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = rust.min.js; path = Pod/Assets/Highlighter/languages/rust.min.js; sourceTree = ""; }; + 1D812DD4E0FE2FF638EAF96050F7D27C /* rust.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = rust.min.js; path = Pod/Assets/Highlighter/languages/rust.min.js; sourceTree = ""; }; 1DE448E4ADDBAF4182F2A8B3B437A5B9 /* ListAdapter+Values.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ListAdapter+Values.swift"; path = "Source/Swift/ListAdapter+Values.swift"; sourceTree = ""; }; 1E040C8B5AC7418D0CF26345E3428B72 /* NYTPhotoViewerCloseButtonXLandscape@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "NYTPhotoViewerCloseButtonXLandscape@2x.png"; path = "NYTPhotoViewer/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape@2x.png"; sourceTree = ""; }; 1E1A7CA8F52CE99EB63F7C1010037594 /* IGListMoveIndexPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListMoveIndexPath.h; path = Source/Common/IGListMoveIndexPath.h; sourceTree = ""; }; @@ -1967,60 +1969,60 @@ 1E6B1EEF392C81B87BEA671BE0AFF433 /* XLPagerTabStrip-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "XLPagerTabStrip-dummy.m"; sourceTree = ""; }; 1EA29D03155240BE494D8EEA60FDBF75 /* Date+AgoString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+AgoString.swift"; path = "DateAgo/Date+AgoString.swift"; sourceTree = ""; }; 1EABEA399F75831993D218222DB4902E /* DropdownTitleView.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DropdownTitleView.modulemap; sourceTree = ""; }; - 1EE2823059D3A3554D73118F88E3C0B2 /* tomorrow-night-blue.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "tomorrow-night-blue.min.css"; path = "Pod/Assets/styles/tomorrow-night-blue.min.css"; sourceTree = ""; }; + 1EE2823059D3A3554D73118F88E3C0B2 /* tomorrow-night-blue.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "tomorrow-night-blue.min.css"; path = "Pod/Assets/styles/tomorrow-night-blue.min.css"; sourceTree = ""; }; 1EECC68C558ACF1A1557A58A71DAA5F0 /* JSONStandardTypeConversions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONStandardTypeConversions.swift; path = Sources/Apollo/JSONStandardTypeConversions.swift; sourceTree = ""; }; 1EFDE9FB4AA1EBB76699A148307423A7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../GitHubAPI-watchOS/Info.plist"; sourceTree = ""; }; 1F4BD1641AA0BAE851766C1C458CEFDF /* IGListBatchContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchContext.h; path = Source/IGListBatchContext.h; sourceTree = ""; }; - 1F4FDCB317D43536C3F4E07ABF835341 /* golo.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = golo.min.js; path = Pod/Assets/Highlighter/languages/golo.min.js; sourceTree = ""; }; + 1F4FDCB317D43536C3F4E07ABF835341 /* golo.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = golo.min.js; path = Pod/Assets/Highlighter/languages/golo.min.js; sourceTree = ""; }; 1FED185FE37C4EBE110D6642BB221B13 /* ext_scanners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ext_scanners.h; path = Source/cmark_gfm/include/ext_scanners.h; sourceTree = ""; }; 200E9D08F2A277DEE76D1DE4CD8A9BAB /* FLEXSystemLogTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogTableViewCell.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.h; sourceTree = ""; }; - 201544B7235D7DC949E6AB940E18B240 /* handlebars.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = handlebars.min.js; path = Pod/Assets/Highlighter/languages/handlebars.min.js; sourceTree = ""; }; - 206FDF7155CF17136BB78BFD5AE5F502 /* jboss-cli.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "jboss-cli.min.js"; path = "Pod/Assets/Highlighter/languages/jboss-cli.min.js"; sourceTree = ""; }; - 209399111655567BE10BA8CF5AF960A5 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = de.lproj; path = Pod/Assets/de.lproj; sourceTree = ""; }; - 20979C99E3058E02BC643AD93E03A28B /* monokai.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = monokai.min.css; path = Pod/Assets/styles/monokai.min.css; sourceTree = ""; }; - 20AD38C49D6D95B3A49F5825B79CC455 /* tex.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = tex.min.js; path = Pod/Assets/Highlighter/languages/tex.min.js; sourceTree = ""; }; - 20C414681C9999F90532714BF5032806 /* cs.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = cs.lproj; path = Pod/Assets/cs.lproj; sourceTree = ""; }; + 201544B7235D7DC949E6AB940E18B240 /* handlebars.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = handlebars.min.js; path = Pod/Assets/Highlighter/languages/handlebars.min.js; sourceTree = ""; }; + 206FDF7155CF17136BB78BFD5AE5F502 /* jboss-cli.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = "jboss-cli.min.js"; path = "Pod/Assets/Highlighter/languages/jboss-cli.min.js"; sourceTree = ""; }; + 209399111655567BE10BA8CF5AF960A5 /* de.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = de.lproj; path = Pod/Assets/de.lproj; sourceTree = ""; }; + 20979C99E3058E02BC643AD93E03A28B /* monokai.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = monokai.min.css; path = Pod/Assets/styles/monokai.min.css; sourceTree = ""; }; + 20AD38C49D6D95B3A49F5825B79CC455 /* tex.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = tex.min.js; path = Pod/Assets/Highlighter/languages/tex.min.js; sourceTree = ""; }; + 20C414681C9999F90532714BF5032806 /* cs.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = cs.lproj; path = Pod/Assets/cs.lproj; sourceTree = ""; }; 20FEA0F44898042EB3D6B868EDF81FDD /* IGListAdapter+UICollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListAdapter+UICollectionView.m"; path = "Source/Internal/IGListAdapter+UICollectionView.m"; sourceTree = ""; }; 215C7E91AF481B3763DB1F17D38DE07D /* FLAnimatedImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FLAnimatedImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 21C919682F21BE85E7582A30B15F578A /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ko.lproj; path = Pod/Assets/ko.lproj; sourceTree = ""; }; + 21C919682F21BE85E7582A30B15F578A /* ko.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = ko.lproj; path = Pod/Assets/ko.lproj; sourceTree = ""; }; 21D46307E093630CECF7DD696F729573 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/UIView+WebCacheOperation.h"; sourceTree = ""; }; 2204E039A503BE3875A9C433BE628593 /* GitHubSession-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "GitHubSession-iOS.modulemap"; sourceTree = ""; }; 2207CD823E8F8040CAC8B86E6D7792C4 /* NYTPhotoCaptionViewLayoutWidthHinting.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoCaptionViewLayoutWidthHinting.h; path = NYTPhotoViewer/Protocols/NYTPhotoCaptionViewLayoutWidthHinting.h; sourceTree = ""; }; - 220E42949736DBDFFDD13F6E5243E67D /* undocumented.json */ = {isa = PBXFileReference; includeInIndex = 1; name = undocumented.json; path = docs/undocumented.json; sourceTree = ""; }; + 220E42949736DBDFFDD13F6E5243E67D /* undocumented.json */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.json; name = undocumented.json; path = docs/undocumented.json; sourceTree = ""; }; 221C10A5AF30F05BF3A41C9F0801318E /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/SDWebImageManager.m; sourceTree = ""; }; - 22681A574A6A6532842AA96F01F45B22 /* haml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = haml.min.js; path = Pod/Assets/Highlighter/languages/haml.min.js; sourceTree = ""; }; + 22681A574A6A6532842AA96F01F45B22 /* haml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = haml.min.js; path = Pod/Assets/Highlighter/languages/haml.min.js; sourceTree = ""; }; 22BF3E55640C8FFEAABAB709F4C8FF61 /* UIImage+Diff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Diff.h"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.h"; sourceTree = ""; }; - 22C4DBC8340BB4EF82395C9663AC3FFC /* dust.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = dust.min.js; path = Pod/Assets/Highlighter/languages/dust.min.js; sourceTree = ""; }; - 22E2CA9865AC90DB7A2A057F1D3C8ADE /* diff.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = diff.min.js; path = Pod/Assets/Highlighter/languages/diff.min.js; sourceTree = ""; }; + 22C4DBC8340BB4EF82395C9663AC3FFC /* dust.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = dust.min.js; path = Pod/Assets/Highlighter/languages/dust.min.js; sourceTree = ""; }; + 22E2CA9865AC90DB7A2A057F1D3C8ADE /* diff.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = diff.min.js; path = Pod/Assets/Highlighter/languages/diff.min.js; sourceTree = ""; }; 22FF7CD425212AF031CF3F257DECE63C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 2336360DF300FB25E98F1B10A115BCC3 /* IGListDiff.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IGListDiff.mm; path = Source/Common/IGListDiff.mm; sourceTree = ""; }; + 2336360DF300FB25E98F1B10A115BCC3 /* IGListDiff.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = IGListDiff.mm; path = Source/Common/IGListDiff.mm; sourceTree = ""; }; 2376F50DEEAF7E8536D94DBC38ED6980 /* IGListAdapterUpdater.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListAdapterUpdater.m; path = Source/IGListAdapterUpdater.m; sourceTree = ""; }; - 237F8F01DE255A5BCFD1EFDEC805E0BC /* html.c */ = {isa = PBXFileReference; includeInIndex = 1; name = html.c; path = Source/cmark_gfm/html.c; sourceTree = ""; }; + 237F8F01DE255A5BCFD1EFDEC805E0BC /* html.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = html.c; path = Source/cmark_gfm/html.c; sourceTree = ""; }; 2386EABD0126F2D07130A66294BA2DDE /* syntax_extension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = syntax_extension.h; path = Source/cmark_gfm/include/syntax_extension.h; sourceTree = ""; }; 238C4F05DC6CAEE7F46C41482417269A /* ListSwiftDiffable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListSwiftDiffable.swift; path = Source/Swift/ListSwiftDiffable.swift; sourceTree = ""; }; - 2399C3B00F15AE74F06C6C44B558282E /* hybrid.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = hybrid.min.css; path = Pod/Assets/styles/hybrid.min.css; sourceTree = ""; }; + 2399C3B00F15AE74F06C6C44B558282E /* hybrid.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = hybrid.min.css; path = Pod/Assets/styles/hybrid.min.css; sourceTree = ""; }; 23BF0D6552F76A5C359D1E39192EB71E /* GraphQLResultAccumulator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLResultAccumulator.swift; path = Sources/Apollo/GraphQLResultAccumulator.swift; sourceTree = ""; }; 23D38C0284B25B4970EF2EBC22D35455 /* CLSStackFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSStackFrame.h; path = iOS/Crashlytics.framework/Headers/CLSStackFrame.h; sourceTree = ""; }; - 240BCEE64EB474F05C6816AFEF414F43 /* livecodeserver.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = livecodeserver.min.js; path = Pod/Assets/Highlighter/languages/livecodeserver.min.js; sourceTree = ""; }; + 240BCEE64EB474F05C6816AFEF414F43 /* livecodeserver.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = livecodeserver.min.js; path = Pod/Assets/Highlighter/languages/livecodeserver.min.js; sourceTree = ""; }; 24A785B5B6824229851C819209389353 /* NYTScalingImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTScalingImageView.m; path = NYTPhotoViewer/NYTScalingImageView.m; sourceTree = ""; }; - 25208D9695A0FA826E49A871F8549CF3 /* IGListCollectionViewLayout.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IGListCollectionViewLayout.mm; path = Source/IGListCollectionViewLayout.mm; sourceTree = ""; }; + 25208D9695A0FA826E49A871F8549CF3 /* IGListCollectionViewLayout.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = IGListCollectionViewLayout.mm; path = Source/IGListCollectionViewLayout.mm; sourceTree = ""; }; 255F379501B592E47F032353E5F618BA /* IGListAdapterProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListAdapterProxy.m; path = Source/Internal/IGListAdapterProxy.m; sourceTree = ""; }; 2590BB8B68BC5629E8C0CD4C2B99EEBC /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - 259453D7E7997DA84057C2B47D6A77B2 /* houdini_href_e.c */ = {isa = PBXFileReference; includeInIndex = 1; name = houdini_href_e.c; path = Source/cmark_gfm/houdini_href_e.c; sourceTree = ""; }; + 259453D7E7997DA84057C2B47D6A77B2 /* houdini_href_e.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = houdini_href_e.c; path = Source/cmark_gfm/houdini_href_e.c; sourceTree = ""; }; 25C8AB94987C82A78AF69D587BAD41B6 /* ContextMenuPresentationController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextMenuPresentationController.swift; path = ContextMenu/ContextMenuPresentationController.swift; sourceTree = ""; }; 25FABD38374B562E0BFBC4A8A5F2A3AB /* Pods-Freetime-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Freetime-resources.sh"; sourceTree = ""; }; - 26113C09105FD86EF9611DC3A9D71004 /* php.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = php.min.js; path = Pod/Assets/Highlighter/languages/php.min.js; sourceTree = ""; }; + 26113C09105FD86EF9611DC3A9D71004 /* php.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = php.min.js; path = Pod/Assets/Highlighter/languages/php.min.js; sourceTree = ""; }; 2648AAC61D108A4CCE7B3AAF3B67BAA1 /* FLEXSystemLogTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewCell.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewCell.m; sourceTree = ""; }; 265F60EF8708AADB7653B37E57B4AA27 /* HTMLString-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HTMLString-umbrella.h"; sourceTree = ""; }; - 26921B879E5F6CFDA282F09867B9D504 /* ascetic.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = ascetic.min.css; path = Pod/Assets/styles/ascetic.min.css; sourceTree = ""; }; + 26921B879E5F6CFDA282F09867B9D504 /* ascetic.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = ascetic.min.css; path = Pod/Assets/styles/ascetic.min.css; sourceTree = ""; }; 26A3B762537F8277990A5D3A13E8CDF5 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; 26ABCA6179D91722895345AC751C4959 /* safari-7@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7@2x.png"; path = "Pod/Assets/safari-7@2x.png"; sourceTree = ""; }; - 26F704BB0B9060512447581C108D3678 /* ScaleTransition.html */ = {isa = PBXFileReference; includeInIndex = 1; name = ScaleTransition.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleTransition.html; sourceTree = ""; }; + 26F704BB0B9060512447581C108D3678 /* ScaleTransition.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ScaleTransition.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleTransition.html; sourceTree = ""; }; 277AF80B5520AC7445A69D6E67D05757 /* SwipeTableOptions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeTableOptions.swift; path = Source/SwipeTableOptions.swift; sourceTree = ""; }; - 284D70062FBC1DEE4C02E0B46F827CCE /* SwipeVerticalAlignment.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeVerticalAlignment.html; path = docs/Enums/SwipeVerticalAlignment.html; sourceTree = ""; }; - 285F6CC05A364FEEC36D7481A2411437 /* flix.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = flix.min.js; path = Pod/Assets/Highlighter/languages/flix.min.js; sourceTree = ""; }; + 284D70062FBC1DEE4C02E0B46F827CCE /* SwipeVerticalAlignment.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeVerticalAlignment.html; path = docs/Enums/SwipeVerticalAlignment.html; sourceTree = ""; }; + 285F6CC05A364FEEC36D7481A2411437 /* flix.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = flix.min.js; path = Pod/Assets/Highlighter/languages/flix.min.js; sourceTree = ""; }; 28B46FA7D17BB2A9C44CD7EF72501559 /* NSAttributedString+Trim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSAttributedString+Trim.swift"; path = "Source/NSAttributedString+Trim.swift"; sourceTree = ""; }; - 28C53BD4D25B573DA8A42312E0DEDD1C /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; name = jazzy.js; path = docs/js/jazzy.js; sourceTree = ""; }; + 28C53BD4D25B573DA8A42312E0DEDD1C /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/js/jazzy.js; sourceTree = ""; }; 28C82423458810D5FFC322CC932F93CA /* scanners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = scanners.h; path = Source/cmark_gfm/include/scanners.h; sourceTree = ""; }; 28F228432CB5BEEBFEE075EA45539852 /* TextElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextElement.swift; path = Source/TextElement.swift; sourceTree = ""; }; 29129CD99DBD368806FF904DE3BC24A6 /* strikethrough.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = strikethrough.h; path = Source/cmark_gfm/include/strikethrough.h; sourceTree = ""; }; @@ -2031,110 +2033,110 @@ 29F25ED319D9BBBFCC476F8989376017 /* cmark-gfm-swift-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cmark-gfm-swift-prefix.pch"; sourceTree = ""; }; 2A134A50AF7CB2AC99C4BB5C3D4B49A0 /* IGListAdapterProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterProxy.h; path = Source/Internal/IGListAdapterProxy.h; sourceTree = ""; }; 2A288CF5FABE11F0B68B3CD990DCDD84 /* cmarkextensions_export.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmarkextensions_export.h; path = Source/cmark_gfm/include/cmarkextensions_export.h; sourceTree = ""; }; - 2A3BC4DB9169C180A845A8C2EF56DE82 /* processing.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = processing.min.js; path = Pod/Assets/Highlighter/languages/processing.min.js; sourceTree = ""; }; + 2A3BC4DB9169C180A845A8C2EF56DE82 /* processing.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = processing.min.js; path = Pod/Assets/Highlighter/languages/processing.min.js; sourceTree = ""; }; 2A5AAA351A5083B64A68B6F8E567D6AB /* IndicatorInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IndicatorInfo.swift; path = Sources/IndicatorInfo.swift; sourceTree = ""; }; 2A680C439F15E9E0062FC93D4C01A5C0 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 2ADB2EB6DACB27BCA42BBE88E228505D /* sv.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = sv.lproj; path = Pod/Assets/sv.lproj; sourceTree = ""; }; - 2B3C684E76B51F6418BEB9851960E74E /* dockerfile.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = dockerfile.min.js; path = Pod/Assets/Highlighter/languages/dockerfile.min.js; sourceTree = ""; }; + 2ADB2EB6DACB27BCA42BBE88E228505D /* sv.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = sv.lproj; path = Pod/Assets/sv.lproj; sourceTree = ""; }; + 2B3C684E76B51F6418BEB9851960E74E /* dockerfile.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = dockerfile.min.js; path = Pod/Assets/Highlighter/languages/dockerfile.min.js; sourceTree = ""; }; 2BF6A6ED20709C946AAD411ACD543B17 /* NSBundle+NYTPhotoViewer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+NYTPhotoViewer.m"; path = "NYTPhotoViewer/Resource Loading/NSBundle+NYTPhotoViewer.m"; sourceTree = ""; }; - 2C0438DF20D8622DE57C21716DFCA5D1 /* axapta.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = axapta.min.js; path = Pod/Assets/Highlighter/languages/axapta.min.js; sourceTree = ""; }; - 2C1CFB42CADFD4B145E3F89AC920301D /* GitHubSession.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GitHubSession.framework; path = "GitHubSession-watchOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2C0438DF20D8622DE57C21716DFCA5D1 /* axapta.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = axapta.min.js; path = Pod/Assets/Highlighter/languages/axapta.min.js; sourceTree = ""; }; + 2C1CFB42CADFD4B145E3F89AC920301D /* GitHubSession.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GitHubSession.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 2C5A46BD51658991733ED92DA908C2CF /* UICollectionView+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+DebugDescription.m"; path = "Source/Internal/UICollectionView+DebugDescription.m"; sourceTree = ""; }; 2CF42E667301B19DC1AD1BB146B29447 /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; 2CF5C400EC23B8D29F669BA2D7D49BEF /* IGListAdapter+UICollectionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListAdapter+UICollectionView.h"; path = "Source/Internal/IGListAdapter+UICollectionView.h"; sourceTree = ""; }; 2D0E7DD1970A43447F8FD9766A4928DA /* FLEXNetworkHistoryTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkHistoryTableViewController.h; path = Classes/Network/FLEXNetworkHistoryTableViewController.h; sourceTree = ""; }; - 2D44B84109DFEE730C0449381A735A40 /* taggerscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = taggerscript.min.js; path = Pod/Assets/Highlighter/languages/taggerscript.min.js; sourceTree = ""; }; + 2D44B84109DFEE730C0449381A735A40 /* taggerscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = taggerscript.min.js; path = Pod/Assets/Highlighter/languages/taggerscript.min.js; sourceTree = ""; }; 2D47C578F0D24D71F38803120C9F5C2E /* Apollo-watchOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Apollo-watchOS.modulemap"; path = "../Apollo-watchOS/Apollo-watchOS.modulemap"; sourceTree = ""; }; - 2D65C091D38F75F74369B32BEC92E6B5 /* elm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = elm.min.js; path = Pod/Assets/Highlighter/languages/elm.min.js; sourceTree = ""; }; - 2D66451CB0284F7C42788ACEF943B8EB /* nsis.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = nsis.min.js; path = Pod/Assets/Highlighter/languages/nsis.min.js; sourceTree = ""; }; + 2D65C091D38F75F74369B32BEC92E6B5 /* elm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = elm.min.js; path = Pod/Assets/Highlighter/languages/elm.min.js; sourceTree = ""; }; + 2D66451CB0284F7C42788ACEF943B8EB /* nsis.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = nsis.min.js; path = Pod/Assets/Highlighter/languages/nsis.min.js; sourceTree = ""; }; 2D828A0026AD2B4CCC858F8EF495F4F7 /* V3MarkThreadsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3MarkThreadsRequest.swift; path = GitHubAPI/V3MarkThreadsRequest.swift; sourceTree = ""; }; 2DC6EC3AF68DA34C99B92354DCC5F747 /* UIApplication+StrictKeyWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+StrictKeyWindow.h"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.h"; sourceTree = ""; }; 2DCADAA49DE2FF7DD45DD108CE2C10D0 /* FMDatabase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMDatabase.m; path = src/fmdb/FMDatabase.m; sourceTree = ""; }; 2DCD2340CEB63D26E508AFBE72ADE87A /* UIViewController+SearchChildren.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIViewController+SearchChildren.swift"; path = "Source/UIViewController+SearchChildren.swift"; sourceTree = ""; }; - 2DD43BC3557B574207995941A7DFF745 /* javascript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = javascript.min.js; path = Pod/Assets/Highlighter/languages/javascript.min.js; sourceTree = ""; }; + 2DD43BC3557B574207995941A7DFF745 /* javascript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = javascript.min.js; path = Pod/Assets/Highlighter/languages/javascript.min.js; sourceTree = ""; }; 2DD7B9F2C5BDA4A97069B8CE0B42FB98 /* Swipeable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Swipeable.swift; path = Source/Swipeable.swift; sourceTree = ""; }; 2E01C1341C863E89CA0B6290E43D87AF /* IGListSectionControllerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSectionControllerInternal.h; path = Source/Internal/IGListSectionControllerInternal.h; sourceTree = ""; }; 2E0AC3297FC1A80D59373870C4926A94 /* Pods-FreetimeWatch.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeWatch.release.xcconfig"; sourceTree = ""; }; 2E0EBFE20E2FB4EB758EFE6DBE3C0E9D /* node.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = node.h; path = Source/cmark_gfm/include/node.h; sourceTree = ""; }; - 2E2813D012595DD39C1869DF4180FDC5 /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Protocols.html; path = docs/Protocols.html; sourceTree = ""; }; - 2E7009A52F30C18847BBE93B5CA780D5 /* advanced.html */ = {isa = PBXFileReference; includeInIndex = 1; name = advanced.html; path = docs/advanced.html; sourceTree = ""; }; - 2E707EA3455E0C01490A13D0085F2BAF /* utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; name = utf8.c; path = Source/cmark_gfm/utf8.c; sourceTree = ""; }; + 2E2813D012595DD39C1869DF4180FDC5 /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Protocols.html; path = docs/Protocols.html; sourceTree = ""; }; + 2E7009A52F30C18847BBE93B5CA780D5 /* advanced.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = advanced.html; path = docs/advanced.html; sourceTree = ""; }; + 2E707EA3455E0C01490A13D0085F2BAF /* utf8.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = utf8.c; path = Source/cmark_gfm/utf8.c; sourceTree = ""; }; 2E7BD33F797F93ECF49AB16D005973AE /* FLEXHierarchyTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHierarchyTableViewController.h; path = Classes/ViewHierarchy/FLEXHierarchyTableViewController.h; sourceTree = ""; }; - 2E84FAEB3C414CB2A413ED3C4A39671F /* roboconf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = roboconf.min.js; path = Pod/Assets/Highlighter/languages/roboconf.min.js; sourceTree = ""; }; + 2E84FAEB3C414CB2A413ED3C4A39671F /* roboconf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = roboconf.min.js; path = Pod/Assets/Highlighter/languages/roboconf.min.js; sourceTree = ""; }; 2E958FBD89A127829B22EC3F3825306B /* V3Release.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3Release.swift; path = GitHubAPI/V3Release.swift; sourceTree = ""; }; 2F1449418F7EF955BBA8511C714A2030 /* V3SubscriptionsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3SubscriptionsRequest.swift; path = GitHubAPI/V3SubscriptionsRequest.swift; sourceTree = ""; }; 2F165C5F00F33979BAD559F08C29AD28 /* UITextView+Prefixes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UITextView+Prefixes.swift"; path = "MessageViewController/UITextView+Prefixes.swift"; sourceTree = ""; }; 2F21F9038A3DAB463B36E4B4E13B37AC /* HTMLString.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = HTMLString.modulemap; sourceTree = ""; }; - 2F2C615B1BC72CFF159E9A045E676010 /* moonscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = moonscript.min.js; path = Pod/Assets/Highlighter/languages/moonscript.min.js; sourceTree = ""; }; + 2F2C615B1BC72CFF159E9A045E676010 /* moonscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = moonscript.min.js; path = Pod/Assets/Highlighter/languages/moonscript.min.js; sourceTree = ""; }; 2F542271FEBD66C7025BD8EBC8DB7B3C /* ConstraintMultiplierTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMultiplierTarget.swift; path = Source/ConstraintMultiplierTarget.swift; sourceTree = ""; }; 2F5B5A80029C628471AFFC8B1C8ED967 /* SwipeExpansionStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeExpansionStyle.swift; path = Source/SwipeExpansionStyle.swift; sourceTree = ""; }; 2F5D9B2FEBC8E8805EF71B48D4954B9F /* IGListSingleSectionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListSingleSectionController.m; path = Source/IGListSingleSectionController.m; sourceTree = ""; }; 2F9C0D994BC508A6B32DCFF07CFA840A /* Node+Elements.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Node+Elements.swift"; path = "Source/Node+Elements.swift"; sourceTree = ""; }; - 2FBA96C065AA5E3EC512A9231600F50C /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Structs.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs.html; sourceTree = ""; }; + 2FBA96C065AA5E3EC512A9231600F50C /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Structs.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs.html; sourceTree = ""; }; 2FEAD599A07E2ACDB73CD731DD0B732F /* ANSCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ANSCompatibility.h; path = iOS/Crashlytics.framework/Headers/ANSCompatibility.h; sourceTree = ""; }; - 30008EC0DAD6830A9DBBA1FFA36D59BB /* mizar.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = mizar.min.js; path = Pod/Assets/Highlighter/languages/mizar.min.js; sourceTree = ""; }; + 30008EC0DAD6830A9DBBA1FFA36D59BB /* mizar.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = mizar.min.js; path = Pod/Assets/Highlighter/languages/mizar.min.js; sourceTree = ""; }; 30555655B2D6814E05231DAB4BE340F9 /* StringHelpers-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "StringHelpers-iOS.modulemap"; sourceTree = ""; }; - 3059A9E52AB7D2CDFE696D981EA9A7B8 /* FillOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; name = FillOptions.html; path = docs/Structs/SwipeExpansionStyle/FillOptions.html; sourceTree = ""; }; + 3059A9E52AB7D2CDFE696D981EA9A7B8 /* FillOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = FillOptions.html; path = docs/Structs/SwipeExpansionStyle/FillOptions.html; sourceTree = ""; }; 3072E5E375B2C91AE684D4DBFD206E92 /* ListElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListElement.swift; path = Source/ListElement.swift; sourceTree = ""; }; 30764AEA4D7649EB6EC2D74CCF42A837 /* SwipeTableViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeTableViewCell.swift; path = Source/SwipeTableViewCell.swift; sourceTree = ""; }; - 30A1F69D4A00DE5BFEA3824FC8EE686A /* openscad.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = openscad.min.js; path = Pod/Assets/Highlighter/languages/openscad.min.js; sourceTree = ""; }; - 30F9E58DBAEDB67945EA59461AAA9A4E /* inform7.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = inform7.min.js; path = Pod/Assets/Highlighter/languages/inform7.min.js; sourceTree = ""; }; + 30A1F69D4A00DE5BFEA3824FC8EE686A /* openscad.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = openscad.min.js; path = Pod/Assets/Highlighter/languages/openscad.min.js; sourceTree = ""; }; + 30F9E58DBAEDB67945EA59461AAA9A4E /* inform7.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = inform7.min.js; path = Pod/Assets/Highlighter/languages/inform7.min.js; sourceTree = ""; }; 310A952E880EE7DAB7EA457A49BB562A /* IGListBatchUpdates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListBatchUpdates.m; path = Source/Internal/IGListBatchUpdates.m; sourceTree = ""; }; - 31298CC1165091905BDBEA6941D05A27 /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Classes.html; path = docs/Classes.html; sourceTree = ""; }; + 31298CC1165091905BDBEA6941D05A27 /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Classes.html; path = docs/Classes.html; sourceTree = ""; }; 3158566B57BDD0D4A40255A850437D5E /* IGListMoveIndexPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListMoveIndexPath.m; path = Source/Common/IGListMoveIndexPath.m; sourceTree = ""; }; 31E49448DA80F4AF8E2FB2703A20E514 /* V3DataResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3DataResponse.swift; path = GitHubAPI/V3DataResponse.swift; sourceTree = ""; }; - 31F7E4D84DFA3A51114F0882855952AB /* cmark.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmark.c; path = Source/cmark_gfm/cmark.c; sourceTree = ""; }; + 31F7E4D84DFA3A51114F0882855952AB /* cmark.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmark.c; path = Source/cmark_gfm/cmark.c; sourceTree = ""; }; 3280A4C500B6E651E1B59D1E3628C794 /* Pods-Freetime.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-Freetime.modulemap"; sourceTree = ""; }; 328AB4B8D45466FF4F50842D2BACD7FC /* FLEX.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEX.h; path = Classes/FLEX.h; sourceTree = ""; }; 32B838127266470CD81D92FB69872B73 /* FLEXDictionaryExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDictionaryExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.m; sourceTree = ""; }; 32FE70BC210BB2350C47D6B69ABB7C8B /* check-and-run-apollo-codegen.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; name = "check-and-run-apollo-codegen.sh"; path = "scripts/check-and-run-apollo-codegen.sh"; sourceTree = ""; }; 33116D76CD35FDFCF7475481B2EBE737 /* HTMLUtils.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTMLUtils.swift; path = Pod/Classes/HTMLUtils.swift; sourceTree = ""; }; - 332DB890EDC48C866266BE54EC32836C /* sml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = sml.min.js; path = Pod/Assets/Highlighter/languages/sml.min.js; sourceTree = ""; }; + 332DB890EDC48C866266BE54EC32836C /* sml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = sml.min.js; path = Pod/Assets/Highlighter/languages/sml.min.js; sourceTree = ""; }; 3330DD48CCB8531A01BFB0B0E695501F /* Pods-FreetimeWatch Extension-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FreetimeWatch Extension-resources.sh"; sourceTree = ""; }; 333A26CB45605222E90FCBD015482CD0 /* Highlightr-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Highlightr-dummy.m"; sourceTree = ""; }; 3342D60372154771E4F9651D12EC9E13 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; 3387058F811735340DAA477C96416B63 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 33965C9D2B50B2895A592026B8213C7F /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = en.lproj; path = Pod/Assets/en.lproj; sourceTree = ""; }; + 33965C9D2B50B2895A592026B8213C7F /* en.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = en.lproj; path = Pod/Assets/en.lproj; sourceTree = ""; }; 33C166F00B24F20785A83BA52A94FE01 /* ButtonBarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ButtonBarView.swift; path = Sources/ButtonBarView.swift; sourceTree = ""; }; 33EA214EC931C0F5B39F780482D07E8F /* FLEXWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWindow.m; path = Classes/ExplorerInterface/FLEXWindow.m; sourceTree = ""; }; 3401370F2C8EC0022D99A6737C7814D7 /* Block+TextElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Block+TextElement.swift"; path = "Source/Block+TextElement.swift"; sourceTree = ""; }; 342B81BB6029CAE955C85E119E865DB7 /* V3Repository.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3Repository.swift; path = GitHubAPI/V3Repository.swift; sourceTree = ""; }; 34986DA4A32A9C70BC0FBCE12A453DCD /* ContextMenuDismissing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextMenuDismissing.swift; path = ContextMenu/ContextMenuDismissing.swift; sourceTree = ""; }; 34A64CE6C333912E307BA3477D1E52B1 /* FLEXRealmDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRealmDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.h; sourceTree = ""; }; - 34ED2DC740B6E64608A121F0408B8531 /* DateAgo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = DateAgo.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 34ED2DC740B6E64608A121F0408B8531 /* DateAgo.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = DateAgo.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 34F236BE1CC3A1C497694A83B718EE59 /* IGListCollectionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListCollectionView.m; path = Source/IGListCollectionView.m; sourceTree = ""; }; 351A52F744A9FA9197B8FC1CAECF5955 /* HTTPNetworkTransport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPNetworkTransport.swift; path = Sources/Apollo/HTTPNetworkTransport.swift; sourceTree = ""; }; 351B69A95109F05DF3A89D7769BC4385 /* FLEXLayerExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLayerExplorerViewController.m; path = Classes/ObjectExplorers/FLEXLayerExplorerViewController.m; sourceTree = ""; }; 35266D63BC52CCFD471D2F2A6F40F3F5 /* Hashable+Combined.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Hashable+Combined.swift"; path = "Source/Hashable+Combined.swift"; sourceTree = ""; }; - 35386A0C86B5AF9E49ABDC22DF9D1F70 /* arduino-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "arduino-light.min.css"; path = "Pod/Assets/styles/arduino-light.min.css"; sourceTree = ""; }; - 353A0791AA5AE0509CB667CB736CE57F /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = "Alamofire-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 35386A0C86B5AF9E49ABDC22DF9D1F70 /* arduino-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "arduino-light.min.css"; path = "Pod/Assets/styles/arduino-light.min.css"; sourceTree = ""; }; + 353A0791AA5AE0509CB667CB736CE57F /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 355679D7A457A5E7BEBB4F46619DBB59 /* Constraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Constraint.swift; path = Source/Constraint.swift; sourceTree = ""; }; 359BC30417BE2AFCC046C9D59E159210 /* Apollo-watchOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Apollo-watchOS-dummy.m"; path = "../Apollo-watchOS/Apollo-watchOS-dummy.m"; sourceTree = ""; }; 35C946B9B06B24AE73AB2B4696E922D1 /* GitHubAPIStatusRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GitHubAPIStatusRequest.swift; path = GitHubAPI/GitHubAPIStatusRequest.swift; sourceTree = ""; }; 360720B1AF4128F09D0BD86E4E5D1881 /* Pods-FreetimeWatch Extension-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FreetimeWatch Extension-acknowledgements.markdown"; sourceTree = ""; }; - 361BCC34FAFA5FBBA5941D8897C56870 /* elixir.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = elixir.min.js; path = Pod/Assets/Highlighter/languages/elixir.min.js; sourceTree = ""; }; + 361BCC34FAFA5FBBA5941D8897C56870 /* elixir.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = elixir.min.js; path = Pod/Assets/Highlighter/languages/elixir.min.js; sourceTree = ""; }; 3634FF6DBBB336C648526C956F4C3A07 /* Date+Ago.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Date+Ago.swift"; path = "DateAgo/Date+Ago.swift"; sourceTree = ""; }; 366EE7400F0D908529F3A64637E915FB /* FMDatabasePool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMDatabasePool.m; path = src/fmdb/FMDatabasePool.m; sourceTree = ""; }; - 36BB87E569703C9CECD0AC2B91FDAF48 /* HTMLString.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = HTMLString.framework; path = HTMLString.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3709CEDFAA87E1991E8EDB1A5D8FA774 /* mono-blue.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "mono-blue.min.css"; path = "Pod/Assets/styles/mono-blue.min.css"; sourceTree = ""; }; + 36BB87E569703C9CECD0AC2B91FDAF48 /* HTMLString.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = HTMLString.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3709CEDFAA87E1991E8EDB1A5D8FA774 /* mono-blue.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "mono-blue.min.css"; path = "Pod/Assets/styles/mono-blue.min.css"; sourceTree = ""; }; 370CE62766C17209C2B0DE580035670F /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 37572B801413095AC5B340EA7FB33D48 /* cmark_ctype.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmark_ctype.h; path = Source/cmark_gfm/include/cmark_ctype.h; sourceTree = ""; }; 379122DD6390E9A89EF4AE1ECCB8E093 /* IGListKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IGListKit-umbrella.h"; sourceTree = ""; }; 379AC4BB56C1FA7B558C49677071C70B /* GraphQLError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLError.swift; path = Sources/Apollo/GraphQLError.swift; sourceTree = ""; }; - 37C92650554E325A445A594941F41DDB /* fsharp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = fsharp.min.js; path = Pod/Assets/Highlighter/languages/fsharp.min.js; sourceTree = ""; }; + 37C92650554E325A445A594941F41DDB /* fsharp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = fsharp.min.js; path = Pod/Assets/Highlighter/languages/fsharp.min.js; sourceTree = ""; }; 38051CDC1E7C32373E64F8E47C2B6B35 /* IGListMoveIndexPathInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListMoveIndexPathInternal.h; path = Source/Common/Internal/IGListMoveIndexPathInternal.h; sourceTree = ""; }; - 383792AA0AB710DC8F64020CD10632FC /* objectivec.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = objectivec.min.js; path = Pod/Assets/Highlighter/languages/objectivec.min.js; sourceTree = ""; }; + 383792AA0AB710DC8F64020CD10632FC /* objectivec.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = objectivec.min.js; path = Pod/Assets/Highlighter/languages/objectivec.min.js; sourceTree = ""; }; 383E81A4F2B394073BC758E844490D96 /* FLEXTableLeftCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableLeftCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.m; sourceTree = ""; }; - 388ED17C29CF981DEFCD474D186A4EDC /* atelier-sulphurpool-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-sulphurpool-dark.min.css"; path = "Pod/Assets/styles/atelier-sulphurpool-dark.min.css"; sourceTree = ""; }; + 388ED17C29CF981DEFCD474D186A4EDC /* atelier-sulphurpool-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-sulphurpool-dark.min.css"; path = "Pod/Assets/styles/atelier-sulphurpool-dark.min.css"; sourceTree = ""; }; 38B3AD341D516F13FA756E64725296B6 /* GitHubUserSession+NetworkingConfigs.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "GitHubUserSession+NetworkingConfigs.swift"; path = "GitHubSession/GitHubUserSession+NetworkingConfigs.swift"; sourceTree = ""; }; 38BC707804072FAF8C6666F50506A086 /* NYTPhotoViewerSinglePhotoDataSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoViewerSinglePhotoDataSource.m; path = NYTPhotoViewer/NYTPhotoViewerSinglePhotoDataSource.m; sourceTree = ""; }; 38CE96E9DCDAEC55A8E06772E193284E /* GitHubSession-watchOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "GitHubSession-watchOS.modulemap"; path = "../GitHubSession-watchOS/GitHubSession-watchOS.modulemap"; sourceTree = ""; }; 38E4F390F37ED7FC23AFE69A47A771A7 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = docs/docsets/SwipeCellKit.docset/Contents/Info.plist; sourceTree = ""; }; 39363299BEEE4C5EBE1DE169AFD56204 /* IGListDiff.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDiff.h; path = Source/Common/IGListDiff.h; sourceTree = ""; }; 3987B6CA0A5CF9528FD8C6DA0FF06523 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; - 39A07D6DDA669DC15BF6E0BB1663346B /* gams.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = gams.min.js; path = Pod/Assets/Highlighter/languages/gams.min.js; sourceTree = ""; }; + 39A07D6DDA669DC15BF6E0BB1663346B /* gams.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = gams.min.js; path = Pod/Assets/Highlighter/languages/gams.min.js; sourceTree = ""; }; 39B7955968B2181FED6123474BCB5159 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 39CE889A5CCE6C2976A2FAA923979310 /* tagfilter.c */ = {isa = PBXFileReference; includeInIndex = 1; name = tagfilter.c; path = Source/cmark_gfm/tagfilter.c; sourceTree = ""; }; + 39CE889A5CCE6C2976A2FAA923979310 /* tagfilter.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = tagfilter.c; path = Source/cmark_gfm/tagfilter.c; sourceTree = ""; }; 3A07E7062FF50B2B29DEF216A8689B30 /* ResourceBundle-XLPagerTabStrip-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-XLPagerTabStrip-Info.plist"; sourceTree = ""; }; 3A1EBC04B8CC5D08EDA92E67210F7F3F /* NSBundle+NYTPhotoViewer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+NYTPhotoViewer.h"; path = "NYTPhotoViewer/Resource Loading/NSBundle+NYTPhotoViewer.h"; sourceTree = ""; }; 3A33A1EAF2AE8111E32B52F234CE1EA3 /* ExpandedHitTestButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpandedHitTestButton.swift; path = MessageViewController/ExpandedHitTestButton.swift; sourceTree = ""; }; @@ -2143,23 +2145,23 @@ 3A8EC15EA8343AE53AB323B990B565FF /* IGListBindable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBindable.h; path = Source/IGListBindable.h; sourceTree = ""; }; 3A91D4A6464254442AE00103C56F8014 /* ListSwiftAdapterEmptyViewSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListSwiftAdapterEmptyViewSource.swift; path = Source/Swift/ListSwiftAdapterEmptyViewSource.swift; sourceTree = ""; }; 3AB5DB384DADDA61A6C87DDC442EEC68 /* Debugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Debugging.swift; path = Source/Debugging.swift; sourceTree = ""; }; - 3AB9EF8296750B917230A5A38CAC2B93 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/index.html; sourceTree = ""; }; - 3AEEA7449A2865F0846B205DBDFC1FF5 /* leaf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = leaf.min.js; path = Pod/Assets/Highlighter/languages/leaf.min.js; sourceTree = ""; }; - 3B17A298ADFF83E66158145DA2100C65 /* Trigger.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Trigger.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Trigger.html; sourceTree = ""; }; + 3AB9EF8296750B917230A5A38CAC2B93 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = index.html; path = docs/index.html; sourceTree = ""; }; + 3AEEA7449A2865F0846B205DBDFC1FF5 /* leaf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = leaf.min.js; path = Pod/Assets/Highlighter/languages/leaf.min.js; sourceTree = ""; }; + 3B17A298ADFF83E66158145DA2100C65 /* Trigger.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Trigger.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Trigger.html; sourceTree = ""; }; 3B1DD768F1563F78355F74AC7036CB1E /* StyledTextRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledTextRenderer.swift; path = Source/StyledTextRenderer.swift; sourceTree = ""; }; 3BBCEEB64FAF19B7BFAB1EAF64D661BA /* safari~iPad.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari~iPad.png"; path = "Pod/Assets/safari~iPad.png"; sourceTree = ""; }; 3C0C46512CA9D476A87C3D72730517F3 /* SwipeDirection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeDirection.swift; path = Sources/SwipeDirection.swift; sourceTree = ""; }; - 3C104499E0841BD04CBC44F6C65B3432 /* registry.c */ = {isa = PBXFileReference; includeInIndex = 1; name = registry.c; path = Source/cmark_gfm/registry.c; sourceTree = ""; }; - 3C3A1B6EF131578640B7CF1BD1D30718 /* StringHelpers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = StringHelpers.framework; path = "StringHelpers-watchOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 3C104499E0841BD04CBC44F6C65B3432 /* registry.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = registry.c; path = Source/cmark_gfm/registry.c; sourceTree = ""; }; + 3C3A1B6EF131578640B7CF1BD1D30718 /* StringHelpers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = StringHelpers.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 3C7185B933C5C0956AAD28A77FFDB13F /* FLEXFieldEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFieldEditorViewController.h; path = Classes/Editing/FLEXFieldEditorViewController.h; sourceTree = ""; }; 3D40C68B28E9BB3AC62A1507F6276E65 /* safari@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari@2x.png"; path = "Pod/Assets/safari@2x.png"; sourceTree = ""; }; 3D44B9423CF42DBA95DF37E43701ACC1 /* Squawk-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Squawk-dummy.m"; sourceTree = ""; }; 3D63E0827E22DDEB9292C4B2866BFE67 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; 3DD882BA7D1049299E16906676820F85 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 3DFCE4A89AEF875D0C81D6D775E0DE4C /* ConstraintAttributes.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintAttributes.swift; path = Source/ConstraintAttributes.swift; sourceTree = ""; }; - 3ED92C8E576BDD41A26B802293CAFF64 /* applescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = applescript.min.js; path = Pod/Assets/Highlighter/languages/applescript.min.js; sourceTree = ""; }; + 3ED92C8E576BDD41A26B802293CAFF64 /* applescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = applescript.min.js; path = Pod/Assets/Highlighter/languages/applescript.min.js; sourceTree = ""; }; 3F198B63C8EEBFC56E9988C41D5F8137 /* ConstraintOffsetTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintOffsetTarget.swift; path = Source/ConstraintOffsetTarget.swift; sourceTree = ""; }; - 3F23E05074EB75715C4D7D6BD4F0B911 /* scilab.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = scilab.min.js; path = Pod/Assets/Highlighter/languages/scilab.min.js; sourceTree = ""; }; + 3F23E05074EB75715C4D7D6BD4F0B911 /* scilab.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = scilab.min.js; path = Pod/Assets/Highlighter/languages/scilab.min.js; sourceTree = ""; }; 3F6119EC0510C8BFE6E750D926A7B28F /* DateAgo-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DateAgo-iOS-prefix.pch"; sourceTree = ""; }; 3F8624D886682B2C1A74B10D78D1FC09 /* FLEXFieldEditorView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFieldEditorView.m; path = Classes/Editing/FLEXFieldEditorView.m; sourceTree = ""; }; 3F9DE69FAD7CB58B07B9220FD7209FD5 /* ManualGraphQLRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ManualGraphQLRequest.swift; path = GitHubAPI/ManualGraphQLRequest.swift; sourceTree = ""; }; @@ -2170,26 +2172,26 @@ 410ACC0886720B8F8C9BFA140C6553FC /* IGListDisplayHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListDisplayHandler.m; path = Source/Internal/IGListDisplayHandler.m; sourceTree = ""; }; 417B1326C8EFCFA015D08028F04238EF /* ResourceBundle-TUSafariActivity-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-TUSafariActivity-Info.plist"; sourceTree = ""; }; 41DD9FF4EE3780C9962F686FFDF37919 /* MessageViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageViewDelegate.swift; path = MessageViewController/MessageViewDelegate.swift; sourceTree = ""; }; - 42175322FBEC0AA0CA6187CBCD678A3A /* scheme.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = scheme.min.js; path = Pod/Assets/Highlighter/languages/scheme.min.js; sourceTree = ""; }; + 42175322FBEC0AA0CA6187CBCD678A3A /* scheme.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = scheme.min.js; path = Pod/Assets/Highlighter/languages/scheme.min.js; sourceTree = ""; }; 4236A456C5A2C6A0F3BFD18576C38452 /* ContextMenu+Animations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ContextMenu+Animations.swift"; path = "ContextMenu/ContextMenu+Animations.swift"; sourceTree = ""; }; 4262E63A40DAC39D371B0C9C90FAEDAF /* NYTPhotoViewerCloseButtonX.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = NYTPhotoViewerCloseButtonX.png; path = NYTPhotoViewer/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX.png; sourceTree = ""; }; 42681568C38AF2BBED968785F708AB59 /* IGListKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = IGListKit.xcconfig; sourceTree = ""; }; - 428233B715FEF361078CE8E512C607D0 /* atelier-dune-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-dune-light.min.css"; path = "Pod/Assets/styles/atelier-dune-light.min.css"; sourceTree = ""; }; - 429AC0FC9384164FFC50BCB434F98469 /* Pods_FreetimeTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_FreetimeTests.framework; path = "Pods-FreetimeTests.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 42D26C80ECF7266364428D49F3B0DBBC /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; name = highlight.css; path = docs/css/highlight.css; sourceTree = ""; }; + 428233B715FEF361078CE8E512C607D0 /* atelier-dune-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-dune-light.min.css"; path = "Pod/Assets/styles/atelier-dune-light.min.css"; sourceTree = ""; }; + 429AC0FC9384164FFC50BCB434F98469 /* Pods_FreetimeTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FreetimeTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 42D26C80ECF7266364428D49F3B0DBBC /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/css/highlight.css; sourceTree = ""; }; 439D89E630178D59E194A81A38F7E19E /* safari~iPad@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari~iPad@2x.png"; path = "Pod/Assets/safari~iPad@2x.png"; sourceTree = ""; }; - 4413141A749AB81E4469C911145E2441 /* StringHelpers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = StringHelpers.framework; path = "StringHelpers-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4413141A749AB81E4469C911145E2441 /* StringHelpers.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = StringHelpers.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4424FF06D97CCBB94CFEEE5B0F84FCE6 /* IGListStackedSectionControllerInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListStackedSectionControllerInternal.h; path = Source/Internal/IGListStackedSectionControllerInternal.h; sourceTree = ""; }; - 445EEF9ADFD6FE99152C5D514111B407 /* DateAgo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DateAgo.framework; path = "DateAgo-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 445EEF9ADFD6FE99152C5D514111B407 /* DateAgo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DateAgo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 446812C0A49BB9D8A24268DD2768E036 /* GitHubSession-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GitHubSession-iOS-umbrella.h"; sourceTree = ""; }; - 44A96A91615C14531D3236AED05188A8 /* case_fold_switch.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = case_fold_switch.inc; path = Source/cmark_gfm/case_fold_switch.inc; sourceTree = ""; }; - 44B5B630303FD9C62C1797898D3298BF /* commonmark.c */ = {isa = PBXFileReference; includeInIndex = 1; name = commonmark.c; path = Source/cmark_gfm/commonmark.c; sourceTree = ""; }; + 44A96A91615C14531D3236AED05188A8 /* case_fold_switch.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = case_fold_switch.inc; path = Source/cmark_gfm/case_fold_switch.inc; sourceTree = ""; }; + 44B5B630303FD9C62C1797898D3298BF /* commonmark.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = commonmark.c; path = Source/cmark_gfm/commonmark.c; sourceTree = ""; }; 44CBD7C0E54C7CC4175695D2FBDF34C7 /* IGListWorkingRangeHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListWorkingRangeHandler.h; path = Source/Internal/IGListWorkingRangeHandler.h; sourceTree = ""; }; 44E513B5960FC596921015C4673980F6 /* NSLayoutManager+Render.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSLayoutManager+Render.swift"; path = "Source/NSLayoutManager+Render.swift"; sourceTree = ""; }; 45343CAC2E287A37401ACF91E37E4CCC /* GitHubAPI-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GitHubAPI-iOS-prefix.pch"; sourceTree = ""; }; - 4552A722874A05A3861209D1D5302B65 /* obsidian.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = obsidian.min.css; path = Pod/Assets/styles/obsidian.min.css; sourceTree = ""; }; + 4552A722874A05A3861209D1D5302B65 /* obsidian.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = obsidian.min.css; path = Pod/Assets/styles/obsidian.min.css; sourceTree = ""; }; 457EC1ABE2DECAABD2250840DFBFE946 /* FLEXSQLiteDatabaseManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSQLiteDatabaseManager.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.m; sourceTree = ""; }; - 4584B7F1EFF5153EF0E13E52F2923C9C /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; name = jazzy.css; path = docs/css/jazzy.css; sourceTree = ""; }; + 4584B7F1EFF5153EF0E13E52F2923C9C /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/css/jazzy.css; sourceTree = ""; }; 458F7D760FF0161604E2132C8FEAAAEB /* IGListDebuggingUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListDebuggingUtilities.m; path = Source/Internal/IGListDebuggingUtilities.m; sourceTree = ""; }; 45B85801D97E822C5DF876A6BB76C177 /* Node.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Node.swift; path = Source/Node.swift; sourceTree = ""; }; 45DCF21EF4A0985C4C91B8459FDAFA24 /* StyledTextKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = StyledTextKit.modulemap; sourceTree = ""; }; @@ -2198,54 +2200,54 @@ 4630E13D54E257198CE4D78293E44A6A /* Pods-Freetime-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Freetime-umbrella.h"; sourceTree = ""; }; 47099D15297B30B30E068A1F957BAAB5 /* RepoRoute.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RepoRoute.swift; path = GitHawkRoutes/RepoRoute.swift; sourceTree = ""; }; 4719F61DEE1CABB570ECEEB8C11A0F80 /* XLPagerTabStrip-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "XLPagerTabStrip-umbrella.h"; sourceTree = ""; }; - 474D6013D48C1572A786846D83A966C2 /* Highlightr.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Highlightr.framework; path = Highlightr.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 474D6013D48C1572A786846D83A966C2 /* Highlightr.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Highlightr.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 479AAD9BC958D02B6733D59ABF71E388 /* FLEXNetworkRecorder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkRecorder.h; path = Classes/Network/FLEXNetworkRecorder.h; sourceTree = ""; }; 47CF19B7F29A390C8ACDFEE743B6D741 /* FMResultSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FMResultSet.m; path = src/fmdb/FMResultSet.m; sourceTree = ""; }; - 48039E676E3FFDCCE583A7AFE3033079 /* xcode.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = xcode.min.css; path = Pod/Assets/styles/xcode.min.css; sourceTree = ""; }; + 48039E676E3FFDCCE583A7AFE3033079 /* xcode.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = xcode.min.css; path = Pod/Assets/styles/xcode.min.css; sourceTree = ""; }; 480CA39D3B07FAD23BDFC9D0A4AA5612 /* FLEXClassExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXClassExplorerViewController.h; path = Classes/ObjectExplorers/FLEXClassExplorerViewController.h; sourceTree = ""; }; - 48377EAFDAE708CED10DB2FBDB6689E4 /* haskell.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = haskell.min.js; path = Pod/Assets/Highlighter/languages/haskell.min.js; sourceTree = ""; }; + 48377EAFDAE708CED10DB2FBDB6689E4 /* haskell.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = haskell.min.js; path = Pod/Assets/Highlighter/languages/haskell.min.js; sourceTree = ""; }; 48634A545C9765674066BDAF40B82BEF /* FLEXObjectExplorerFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXObjectExplorerFactory.h; path = Classes/ObjectExplorers/FLEXObjectExplorerFactory.h; sourceTree = ""; }; 487BC5B649D1570CA324910028EAB2D2 /* ListSwiftPair.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListSwiftPair.swift; path = Source/Swift/ListSwiftPair.swift; sourceTree = ""; }; - 488A1ED1470BBD2942336B081E564190 /* cal.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = cal.min.js; path = Pod/Assets/Highlighter/languages/cal.min.js; sourceTree = ""; }; + 488A1ED1470BBD2942336B081E564190 /* cal.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = cal.min.js; path = Pod/Assets/Highlighter/languages/cal.min.js; sourceTree = ""; }; 488D5E25BE89A076CF11F814B8B735B3 /* Record.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Record.swift; path = Sources/Apollo/Record.swift; sourceTree = ""; }; 48B3D6E783F1909C0A57C17A2C2F65F4 /* iterator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = iterator.h; path = Source/cmark_gfm/include/iterator.h; sourceTree = ""; }; 48C46448BE84013C4793FC5010E2931F /* UIApplication+StrictKeyWindow.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+StrictKeyWindow.m"; path = "FBSnapshotTestCase/Categories/UIApplication+StrictKeyWindow.m"; sourceTree = ""; }; - 48C8E40116DAD2F309BB1B5ABE8083D5 /* less.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = less.min.js; path = Pod/Assets/Highlighter/languages/less.min.js; sourceTree = ""; }; + 48C8E40116DAD2F309BB1B5ABE8083D5 /* less.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = less.min.js; path = Pod/Assets/Highlighter/languages/less.min.js; sourceTree = ""; }; 48E0372CFCE5AB5DBBADFD00ADFCD8FB /* URL+Routable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "URL+Routable.swift"; path = "GitHawkRoutes/URL+Routable.swift"; sourceTree = ""; }; 49211F2A4613F5139876AE87C2335C92 /* NYTPhotoDismissalInteractionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoDismissalInteractionController.m; path = NYTPhotoViewer/NYTPhotoDismissalInteractionController.m; sourceTree = ""; }; 496D9545B62790266ADC4F51CFC16429 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = GitHubAPI/Result.swift; sourceTree = ""; }; - 49C26729E32FB85802C075627824D07A /* ScaleAndAlphaExpansion.html */ = {isa = PBXFileReference; includeInIndex = 1; name = ScaleAndAlphaExpansion.html; path = docs/Structs/ScaleAndAlphaExpansion.html; sourceTree = ""; }; - 49CD196BA90A699CBB0CDD303CD613DD /* SwipeTableOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTableOptions.html; path = docs/Structs/SwipeTableOptions.html; sourceTree = ""; }; + 49C26729E32FB85802C075627824D07A /* ScaleAndAlphaExpansion.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ScaleAndAlphaExpansion.html; path = docs/Structs/ScaleAndAlphaExpansion.html; sourceTree = ""; }; + 49CD196BA90A699CBB0CDD303CD613DD /* SwipeTableOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeTableOptions.html; path = docs/Structs/SwipeTableOptions.html; sourceTree = ""; }; 49D8585A1C394054478B0A4E2BFDA451 /* AlamofireNetworkActivityIndicator-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireNetworkActivityIndicator-prefix.pch"; sourceTree = ""; }; - 49D8FB6689A7D1D8CCA910AB3C5261DA /* maxima.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = maxima.min.js; path = Pod/Assets/Highlighter/languages/maxima.min.js; sourceTree = ""; }; + 49D8FB6689A7D1D8CCA910AB3C5261DA /* maxima.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = maxima.min.js; path = Pod/Assets/Highlighter/languages/maxima.min.js; sourceTree = ""; }; 4AEC46AD9EFEBBFC54A8FA0D29683D53 /* NYTPhotoViewer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NYTPhotoViewer-umbrella.h"; sourceTree = ""; }; 4AF926726CCB381D1A3812C5136766AC /* ConstraintDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintDescription.swift; path = Source/ConstraintDescription.swift; sourceTree = ""; }; 4BABC9A814B0CB1C07B287F5A47350FE /* ConstraintMaker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMaker.swift; path = Source/ConstraintMaker.swift; sourceTree = ""; }; 4BC4655FFFD6098633743AF2E1BC521D /* DateAgo-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DateAgo-iOS-umbrella.h"; sourceTree = ""; }; - 4BEC0581AE3EDA3C5B37A2C6C1D1AFDE /* Trigger.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Trigger.html; path = docs/Structs/SwipeExpansionStyle/Trigger.html; sourceTree = ""; }; + 4BEC0581AE3EDA3C5B37A2C6C1D1AFDE /* Trigger.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Trigger.html; path = docs/Structs/SwipeExpansionStyle/Trigger.html; sourceTree = ""; }; 4C0E06BB7FB1F9D29709CA7FE7E8124E /* FLEXManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXManager.h; path = Classes/FLEXManager.h; sourceTree = ""; }; 4C1F82900692952DD2DF6D29A3297617 /* IGListAdapterUpdater.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterUpdater.h; path = Source/IGListAdapterUpdater.h; sourceTree = ""; }; - 4CB5FC0B2BF892527A9EA4931172AA1D /* rsl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = rsl.min.js; path = Pod/Assets/Highlighter/languages/rsl.min.js; sourceTree = ""; }; - 4CCA891ACDE0517B6A6FBE1E812CB898 /* FLAnimatedImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLAnimatedImage.framework; path = FLAnimatedImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4CB5FC0B2BF892527A9EA4931172AA1D /* rsl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = rsl.min.js; path = Pod/Assets/Highlighter/languages/rsl.min.js; sourceTree = ""; }; + 4CCA891ACDE0517B6A6FBE1E812CB898 /* FLAnimatedImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FLAnimatedImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4CDF8ED87AE2F5F1EFBA417DB1AC04E4 /* Alamofire-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-iOS-umbrella.h"; sourceTree = ""; }; - 4CEFF525D2EC48BE84C6FCBE721F5287 /* SwipeCellKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SwipeCellKit.framework; path = SwipeCellKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4CEFF525D2EC48BE84C6FCBE721F5287 /* SwipeCellKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwipeCellKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4D0E78A4406A8B77D3D789D0ABFCAD99 /* V3Notification.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3Notification.swift; path = GitHubAPI/V3Notification.swift; sourceTree = ""; }; 4D35AD68D7C569EAB58BBA1B5EF9255D /* V3SubscribeThreadRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3SubscribeThreadRequest.swift; path = GitHubAPI/V3SubscribeThreadRequest.swift; sourceTree = ""; }; - 4DB55C648539F11155A136B84D1C3DF1 /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = jquery.min.js; path = docs/js/jquery.min.js; sourceTree = ""; }; + 4DB55C648539F11155A136B84D1C3DF1 /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/js/jquery.min.js; sourceTree = ""; }; 4E2A8DE954FA64D3963A83E039B86F0B /* FLEXResources.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXResources.h; path = Classes/Utility/FLEXResources.h; sourceTree = ""; }; 4E33135958CFD9122B499E7F910A70B6 /* IGListSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSectionController.h; path = Source/IGListSectionController.h; sourceTree = ""; }; 4E4D1367E7BEA077E152A26D3925F5A5 /* ButtonBarViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ButtonBarViewCell.swift; path = Sources/ButtonBarViewCell.swift; sourceTree = ""; }; 4EA5EBC3C0D9A12C999DC9BD02557677 /* SwipeActionButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeActionButton.swift; path = Source/SwipeActionButton.swift; sourceTree = ""; }; 4EC545C875F4ADC3CBA989BC6856AA5A /* UIScrollView+IGListKit.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+IGListKit.m"; path = "Source/Internal/UIScrollView+IGListKit.m"; sourceTree = ""; }; 4ECFC1EC51D45CDC2271126DE71E8508 /* ContextMenu-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ContextMenu-umbrella.h"; sourceTree = ""; }; - 4F1C47BAC2CDDC3E6A34AE59A8E00AB0 /* GitHubSession.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = GitHubSession.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 4F1C47BAC2CDDC3E6A34AE59A8E00AB0 /* GitHubSession.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = GitHubSession.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 4F6C7D127A8B383E90A3AA7A39412309 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/UIView+WebCacheOperation.m"; sourceTree = ""; }; 4F7F705C5A93AC870C98B9423EE60202 /* V3MarkRepositoryNotificationsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3MarkRepositoryNotificationsRequest.swift; path = GitHubAPI/V3MarkRepositoryNotificationsRequest.swift; sourceTree = ""; }; 4F89EE2A34FEFF3B097D30E15B9C33CB /* Fabric.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Fabric.h; path = iOS/Fabric.framework/Headers/Fabric.h; sourceTree = ""; }; - 4F9CA68EB072477764755683166D4291 /* IGListWorkingRangeHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IGListWorkingRangeHandler.mm; path = Source/Internal/IGListWorkingRangeHandler.mm; sourceTree = ""; }; + 4F9CA68EB072477764755683166D4291 /* IGListWorkingRangeHandler.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = IGListWorkingRangeHandler.mm; path = Source/Internal/IGListWorkingRangeHandler.mm; sourceTree = ""; }; 4FA106EA6DC5A9A26ED0BBDDF298E1BA /* IGListDebugger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListDebugger.m; path = Source/Internal/IGListDebugger.m; sourceTree = ""; }; 4FAC04C336BCD007BA3EB3570F8C4B37 /* MessageViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageViewController.swift; path = MessageViewController/MessageViewController.swift; sourceTree = ""; }; - 4FDB7AFD24B39FE4D2FDE9A321F5DAF3 /* ada.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ada.min.js; path = Pod/Assets/Highlighter/languages/ada.min.js; sourceTree = ""; }; + 4FDB7AFD24B39FE4D2FDE9A321F5DAF3 /* ada.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ada.min.js; path = Pod/Assets/Highlighter/languages/ada.min.js; sourceTree = ""; }; 507437352116D1BC6E3B5E05A1134A58 /* safari-7~iPad@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7~iPad@2x.png"; path = "Pod/Assets/safari-7~iPad@2x.png"; sourceTree = ""; }; 508985D538B4880203C966B4815447A2 /* FLEXLiveObjectsTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLiveObjectsTableViewController.h; path = Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.h; sourceTree = ""; }; 50A05DA2AB01C1BD687D249F6961DD52 /* V3MilestoneRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3MilestoneRequest.swift; path = GitHubAPI/V3MilestoneRequest.swift; sourceTree = ""; }; @@ -2256,71 +2258,71 @@ 517E1950256F0084EFF3401BC5BE2CA4 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = ""; }; 517E7212B7A89AFF5F062DCFC000EB6E /* FLEXArgumentInputView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.h; sourceTree = ""; }; 51B4AE987CD932B5410E4FF009D9DEEB /* Highlightr.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Highlightr.modulemap; sourceTree = ""; }; - 51DFF5B624452566E6553B4DA471641E /* actionscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = actionscript.min.js; path = Pod/Assets/Highlighter/languages/actionscript.min.js; sourceTree = ""; }; + 51DFF5B624452566E6553B4DA471641E /* actionscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = actionscript.min.js; path = Pod/Assets/Highlighter/languages/actionscript.min.js; sourceTree = ""; }; 520BEC4F5453A93A7F9D153B924AA01B /* FMResultSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMResultSet.h; path = src/fmdb/FMResultSet.h; sourceTree = ""; }; - 520FD349C3DE0822F0283D7FABEED55A /* solarized-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "solarized-dark.min.css"; path = "Pod/Assets/styles/solarized-dark.min.css"; sourceTree = ""; }; - 52C2CE978EB53E3752A90A4D980330B6 /* xml.c */ = {isa = PBXFileReference; includeInIndex = 1; name = xml.c; path = Source/cmark_gfm/xml.c; sourceTree = ""; }; + 520FD349C3DE0822F0283D7FABEED55A /* solarized-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "solarized-dark.min.css"; path = "Pod/Assets/styles/solarized-dark.min.css"; sourceTree = ""; }; + 52C2CE978EB53E3752A90A4D980330B6 /* xml.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = xml.c; path = Source/cmark_gfm/xml.c; sourceTree = ""; }; 531EC85632541EDC8813EFDC78862A3D /* IGListIndexSetResultInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListIndexSetResultInternal.h; path = Source/Common/Internal/IGListIndexSetResultInternal.h; sourceTree = ""; }; - 5342D05B0309A55AE3A797232830BCCE /* typescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = typescript.min.js; path = Pod/Assets/Highlighter/languages/typescript.min.js; sourceTree = ""; }; - 5380E71B1341158162D7A9095055D3D8 /* SwipeTableViewCellDelegate.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTableViewCellDelegate.html; path = docs/Protocols/SwipeTableViewCellDelegate.html; sourceTree = ""; }; + 5342D05B0309A55AE3A797232830BCCE /* typescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = typescript.min.js; path = Pod/Assets/Highlighter/languages/typescript.min.js; sourceTree = ""; }; + 5380E71B1341158162D7A9095055D3D8 /* SwipeTableViewCellDelegate.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeTableViewCellDelegate.html; path = docs/Protocols/SwipeTableViewCellDelegate.html; sourceTree = ""; }; 53DD18958E9FB1A89F9B4D14BD788827 /* GraphQLExecutor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLExecutor.swift; path = Sources/Apollo/GraphQLExecutor.swift; sourceTree = ""; }; 53DDF023CC5ACF8832D51DB09DF461EE /* Pods-FreetimeTests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FreetimeTests-acknowledgements.markdown"; sourceTree = ""; }; - 53DE3DA59E5CF786B9B6F0A2C0B37EF9 /* tomorrow-night-bright.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "tomorrow-night-bright.min.css"; path = "Pod/Assets/styles/tomorrow-night-bright.min.css"; sourceTree = ""; }; + 53DE3DA59E5CF786B9B6F0A2C0B37EF9 /* tomorrow-night-bright.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "tomorrow-night-bright.min.css"; path = "Pod/Assets/styles/tomorrow-night-bright.min.css"; sourceTree = ""; }; 53EC65273B83084AD69088C527BACBF6 /* FLEXArgumentInputJSONObjectView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputJSONObjectView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputJSONObjectView.h; sourceTree = ""; }; 54348E1A9AE8E4A7FEB62CF91BBE6AB4 /* FLEXFileBrowserTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserTableViewController.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.h; sourceTree = ""; }; 548ABCDDDD74FC97BB0B62E68EC366F7 /* CGImage+LRUCachable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGImage+LRUCachable.swift"; path = "Source/CGImage+LRUCachable.swift"; sourceTree = ""; }; 54B786FCF0185168BC0490FD641C46CB /* SwipeTableViewCell+Accessibility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SwipeTableViewCell+Accessibility.swift"; path = "Source/SwipeTableViewCell+Accessibility.swift"; sourceTree = ""; }; 54BC4DAF68C56B73BD49BA9261A00206 /* NYTPhotoViewerArrayDataSource.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoViewerArrayDataSource.m; path = NYTPhotoViewer/NYTPhotoViewerArrayDataSource.m; sourceTree = ""; }; - 54E204DF50C00665DC5C9B92641F21D4 /* nix.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = nix.min.js; path = Pod/Assets/Highlighter/languages/nix.min.js; sourceTree = ""; }; + 54E204DF50C00665DC5C9B92641F21D4 /* nix.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = nix.min.js; path = Pod/Assets/Highlighter/languages/nix.min.js; sourceTree = ""; }; 54EE5CFDED5B5795FD2B662E7757F487 /* ImageAlertAction-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ImageAlertAction-umbrella.h"; sourceTree = ""; }; - 54FF58058C3931FB2B81DC78758D2FEB /* yaml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = yaml.min.js; path = Pod/Assets/Highlighter/languages/yaml.min.js; sourceTree = ""; }; + 54FF58058C3931FB2B81DC78758D2FEB /* yaml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = yaml.min.js; path = Pod/Assets/Highlighter/languages/yaml.min.js; sourceTree = ""; }; 551453B160A6A8D4565BA0E9F1AA89B0 /* UIScrollView+IGListKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+IGListKit.h"; path = "Source/Internal/UIScrollView+IGListKit.h"; sourceTree = ""; }; 559B3C510005E4B2B0897809D2A16C2C /* IGListBatchUpdates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchUpdates.h; path = Source/Internal/IGListBatchUpdates.h; sourceTree = ""; }; 55A8FFD632E4C8B6A084998C12A9468E /* ConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintItem.swift; path = Source/ConstraintItem.swift; sourceTree = ""; }; 55C659453FF06245E1B025D0D488EC33 /* UICollectionViewLayout+InteractiveReordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+InteractiveReordering.h"; path = "Source/Internal/UICollectionViewLayout+InteractiveReordering.h"; sourceTree = ""; }; 5610471E9BC7DB460FC769432BF4418F /* Apollo-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Apollo-iOS.modulemap"; sourceTree = ""; }; 5648892FAE89C02A8DE80E2E91FC65DB /* IGListCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCompatibility.h; path = Source/Common/IGListCompatibility.h; sourceTree = ""; }; - 568B25709713153D390AA7EB0CF3CB55 /* Squawk.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Squawk.framework; path = Squawk.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 568B25709713153D390AA7EB0CF3CB55 /* Squawk.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Squawk.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 56E678164F1249584CAA5C53F035E0B0 /* IGListDebuggingUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDebuggingUtilities.h; path = Source/Internal/IGListDebuggingUtilities.h; sourceTree = ""; }; 5757C2750BB7FC15D39BB0571726A8BE /* JSON.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSON.swift; path = Sources/Apollo/JSON.swift; sourceTree = ""; }; 57648422E3FB7F1991419C48C728CD31 /* GraphQLResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLResponse.swift; path = Sources/Apollo/GraphQLResponse.swift; sourceTree = ""; }; 5775EA20C516D6FEA0080DF27D358ACF /* safari.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = safari.png; path = Pod/Assets/safari.png; sourceTree = ""; }; - 578E5A79B9C73FBCE034D60E5F9C45A5 /* atelier-savanna-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-savanna-light.min.css"; path = "Pod/Assets/styles/atelier-savanna-light.min.css"; sourceTree = ""; }; + 578E5A79B9C73FBCE034D60E5F9C45A5 /* atelier-savanna-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-savanna-light.min.css"; path = "Pod/Assets/styles/atelier-savanna-light.min.css"; sourceTree = ""; }; 57A6AE473482C9567CFF89AFE07C1887 /* FLEXArgumentInputFontsPickerView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontsPickerView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.h; sourceTree = ""; }; - 57E53C5E653C6C4E59E6531E81FFCC09 /* kimbie.dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = kimbie.dark.min.css; path = Pod/Assets/styles/kimbie.dark.min.css; sourceTree = ""; }; + 57E53C5E653C6C4E59E6531E81FFCC09 /* kimbie.dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = kimbie.dark.min.css; path = Pod/Assets/styles/kimbie.dark.min.css; sourceTree = ""; }; 57F418D389AE277D62BB8B8B6A11B849 /* NYTPhotoViewerArrayDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoViewerArrayDataSource.h; path = NYTPhotoViewer/NYTPhotoViewerArrayDataSource.h; sourceTree = ""; }; - 58033DEF49C56A47CD1C31C8BC1224D3 /* github.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = github.min.css; path = Pod/Assets/styles/github.min.css; sourceTree = ""; }; - 580D1B6CEFC993A89C7A191AB86352FA /* pf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = pf.min.js; path = Pod/Assets/Highlighter/languages/pf.min.js; sourceTree = ""; }; + 58033DEF49C56A47CD1C31C8BC1224D3 /* github.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = github.min.css; path = Pod/Assets/styles/github.min.css; sourceTree = ""; }; + 580D1B6CEFC993A89C7A191AB86352FA /* pf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = pf.min.js; path = Pod/Assets/Highlighter/languages/pf.min.js; sourceTree = ""; }; 584941A7A4E9D58242118DC10B4EEE6A /* GraphQLQueryWatcher.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLQueryWatcher.swift; path = Sources/Apollo/GraphQLQueryWatcher.swift; sourceTree = ""; }; - 5877CF9250536BEC3E75A2CBEACED96C /* SwipeActionTransitioningContext.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionTransitioningContext.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeActionTransitioningContext.html; sourceTree = ""; }; + 5877CF9250536BEC3E75A2CBEACED96C /* SwipeActionTransitioningContext.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeActionTransitioningContext.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeActionTransitioningContext.html; sourceTree = ""; }; 5905F8C220DCE1AF4976C2A4010C8293 /* StyledTextRenderCacheKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledTextRenderCacheKey.swift; path = Source/StyledTextRenderCacheKey.swift; sourceTree = ""; }; 5943E24F2FABA53EC7CF197FA5AC0054 /* NYTPhotoViewerCore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoViewerCore.h; path = NYTPhotoViewer/NYTPhotoViewerCore.h; sourceTree = ""; }; 5971A4A272650982B7F9DF0AB09F8B15 /* ResourceBundle-Resources-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = "ResourceBundle-Resources-Info.plist"; path = "../DateAgo-watchOS/ResourceBundle-Resources-Info.plist"; sourceTree = ""; }; 5977678032667E5F3CDE2303983EB442 /* ConstraintMakerExtendable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerExtendable.swift; path = Source/ConstraintMakerExtendable.swift; sourceTree = ""; }; 597E6BDCB6AFCF749E228B1D2C5B13E2 /* FMDB.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FMDB.modulemap; sourceTree = ""; }; 599E72AD76BD9D9091B5F79FEA9F315C /* SDWebImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDecoder.h; path = SDWebImage/SDWebImageDecoder.h; sourceTree = ""; }; - 59AB1F495D9698AF796D711C1D1FFDA0 /* purebasic.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = purebasic.min.css; path = Pod/Assets/styles/purebasic.min.css; sourceTree = ""; }; + 59AB1F495D9698AF796D711C1D1FFDA0 /* purebasic.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = purebasic.min.css; path = Pod/Assets/styles/purebasic.min.css; sourceTree = ""; }; 59C8AE3462FA86A2C178616EDAC87F57 /* ConstraintView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintView.swift; path = Source/ConstraintView.swift; sourceTree = ""; }; - 59D15787BD30A41FD6AC42B619DA4FF7 /* sk.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = sk.lproj; path = Pod/Assets/sk.lproj; sourceTree = ""; }; + 59D15787BD30A41FD6AC42B619DA4FF7 /* sk.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = sk.lproj; path = Pod/Assets/sk.lproj; sourceTree = ""; }; 59F05B238ABD7920BDF1047E0D7C8ADC /* Pods-FreetimeWatch-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FreetimeWatch-umbrella.h"; sourceTree = ""; }; - 59FA95CBBDA88F242203A470C0593A15 /* profile.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = profile.min.js; path = Pod/Assets/Highlighter/languages/profile.min.js; sourceTree = ""; }; + 59FA95CBBDA88F242203A470C0593A15 /* profile.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = profile.min.js; path = Pod/Assets/Highlighter/languages/profile.min.js; sourceTree = ""; }; 5A2AB87B501CBFDEA0B1CDB39241A971 /* IGListIndexSetResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListIndexSetResult.h; path = Source/Common/IGListIndexSetResult.h; sourceTree = ""; }; 5A5B47DDEFD50197BEB9DE342B49309D /* WatchAppUserSessionSync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = WatchAppUserSessionSync.swift; path = GitHubSession/WatchAppUserSessionSync.swift; sourceTree = ""; }; 5AC8498FAA27948C0E9A5991DB14BCF4 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 5ACC5F1D1C7D10419108060C74572C67 /* LayoutConstraint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraint.swift; path = Source/LayoutConstraint.swift; sourceTree = ""; }; - 5AE1F16E3EBFBAD175F16BEA31573134 /* FLEX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FLEX.framework; path = FLEX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5AE1F16E3EBFBAD175F16BEA31573134 /* FLEX.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FLEX.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 5AE8DB083F0CC60DDEE75D0DB6CFB6D8 /* ListSwiftAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListSwiftAdapter.swift; path = Source/Swift/ListSwiftAdapter.swift; sourceTree = ""; }; 5B1EAAF949C9EC448B8C9B31E4FAFF5B /* ConstraintPriority.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriority.swift; path = Source/ConstraintPriority.swift; sourceTree = ""; }; - 5B25CFF4075875D2C923C15E56DBC29D /* scanners.c */ = {isa = PBXFileReference; includeInIndex = 1; name = scanners.c; path = Source/cmark_gfm/scanners.c; sourceTree = ""; }; - 5B2CF48F03F2689C9DF0F84C584F6396 /* arduino.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = arduino.min.js; path = Pod/Assets/Highlighter/languages/arduino.min.js; sourceTree = ""; }; - 5B57665275FFE99292BA15A232FA15A1 /* scss.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = scss.min.js; path = Pod/Assets/Highlighter/languages/scss.min.js; sourceTree = ""; }; - 5B578C8CD44652E29A966741B444BE74 /* thrift.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = thrift.min.js; path = Pod/Assets/Highlighter/languages/thrift.min.js; sourceTree = ""; }; - 5B8E5E17D6AE76664788771E6C5EAD9B /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Enums.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums.html; sourceTree = ""; }; + 5B25CFF4075875D2C923C15E56DBC29D /* scanners.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = scanners.c; path = Source/cmark_gfm/scanners.c; sourceTree = ""; }; + 5B2CF48F03F2689C9DF0F84C584F6396 /* arduino.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = arduino.min.js; path = Pod/Assets/Highlighter/languages/arduino.min.js; sourceTree = ""; }; + 5B57665275FFE99292BA15A232FA15A1 /* scss.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = scss.min.js; path = Pod/Assets/Highlighter/languages/scss.min.js; sourceTree = ""; }; + 5B578C8CD44652E29A966741B444BE74 /* thrift.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = thrift.min.js; path = Pod/Assets/Highlighter/languages/thrift.min.js; sourceTree = ""; }; + 5B8E5E17D6AE76664788771E6C5EAD9B /* Enums.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Enums.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums.html; sourceTree = ""; }; 5BBCA3D7871418048093DB682F95E06D /* cmark-gfm-swift-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "cmark-gfm-swift-dummy.m"; sourceTree = ""; }; 5BBCE797DA1C25DAEEDFE29FC605DAC7 /* FLEXDefaultEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDefaultEditorViewController.h; path = Classes/Editing/FLEXDefaultEditorViewController.h; sourceTree = ""; }; 5C325C1339FE1FACC1235847816F88AE /* map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = map.h; path = Source/cmark_gfm/include/map.h; sourceTree = ""; }; 5C57F8FD90B567DDF8412EC4AB7D48F6 /* SwipeCollectionViewCell.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeCollectionViewCell.swift; path = Source/SwipeCollectionViewCell.swift; sourceTree = ""; }; - 5CF0F9DEAE44B457D1703EFEF462A9A3 /* htmlbars.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = htmlbars.min.js; path = Pod/Assets/Highlighter/languages/htmlbars.min.js; sourceTree = ""; }; + 5CF0F9DEAE44B457D1703EFEF462A9A3 /* htmlbars.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = htmlbars.min.js; path = Pod/Assets/Highlighter/languages/htmlbars.min.js; sourceTree = ""; }; 5D457B6CBA0546ABDC0FCE2784FE534F /* SnapKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-umbrella.h"; sourceTree = ""; }; 5D586A7C1A312AE39E30A0C8E394E93E /* FBSnapshotTestCase.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FBSnapshotTestCase.xcconfig; sourceTree = ""; }; 5D84CECEDD06220C11698785093F235C /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -2329,18 +2331,18 @@ 5DEC285B1DB9D0DB6F87A989E4DA19BA /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/img/dash.png; sourceTree = ""; }; 5E04E2131A89C324E02D858E2C35CFD5 /* FLEXHierarchyTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHierarchyTableViewCell.m; path = Classes/ViewHierarchy/FLEXHierarchyTableViewCell.m; sourceTree = ""; }; 5E5931BA29B3E2B760951D3829F10EBC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Alamofire-watchOS/Info.plist"; sourceTree = ""; }; - 5E9706DE00E44FBACC839801D92570F1 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ru.lproj; path = Pod/Assets/ru.lproj; sourceTree = ""; }; + 5E9706DE00E44FBACC839801D92570F1 /* ru.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = ru.lproj; path = Pod/Assets/ru.lproj; sourceTree = ""; }; 5F0F51295B63617BB029E16F4BE625E9 /* FLAnimatedImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImage-prefix.pch"; sourceTree = ""; }; 5F14CBD3F2253FD1DB9C33A37D329939 /* FLEXArgumentInputNumberView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputNumberView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.h; sourceTree = ""; }; 5F2420BABFEE526AC5D0D167E9A1C7FD /* ConstraintRelation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintRelation.swift; path = Source/ConstraintRelation.swift; sourceTree = ""; }; 5F7672AD7A51AE1A71E7E09C0C19EEFF /* FLAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FLAnimatedImageView+WebCache.h"; path = "SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.h"; sourceTree = ""; }; 5FDA2CBF52D45AB0B861AC692168E6EB /* FLEXNetworkTransaction.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransaction.h; path = Classes/Network/FLEXNetworkTransaction.h; sourceTree = ""; }; 5FEE8E4CF0DFDA02936976DFC18DCEE9 /* FLEXSystemLogTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogTableViewController.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.h; sourceTree = ""; }; - 60411136AD6EC921F07199DDA3A0BA64 /* GitHubAPI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GitHubAPI.framework; path = "GitHubAPI-watchOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 60411136AD6EC921F07199DDA3A0BA64 /* GitHubAPI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GitHubAPI.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 60689A2359E4CB86D5E5A05E20028990 /* FBSnapshotTestCase.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCase.m; path = FBSnapshotTestCase/FBSnapshotTestCase.m; sourceTree = ""; }; 60BABF9D641781EECF635A9FBBFDC499 /* HTMLString-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "HTMLString-prefix.pch"; sourceTree = ""; }; 60DD578CE9C066032C1BB506422F0194 /* StyledTextKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "StyledTextKit-prefix.pch"; sourceTree = ""; }; - 60E391AEAD9622C7544473F65D7F3811 /* linked_list.c */ = {isa = PBXFileReference; includeInIndex = 1; name = linked_list.c; path = Source/cmark_gfm/linked_list.c; sourceTree = ""; }; + 60E391AEAD9622C7544473F65D7F3811 /* linked_list.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = linked_list.c; path = Source/cmark_gfm/linked_list.c; sourceTree = ""; }; 60F732880537080E37E14CB86B47F8D6 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; 610D032283A8CEF1B652DC708C00F782 /* FLEXArgumentInputView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputView.m; sourceTree = ""; }; 6130B6607987CA12741B39590BB06A3F /* AsynchronousOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AsynchronousOperation.swift; path = Sources/Apollo/AsynchronousOperation.swift; sourceTree = ""; }; @@ -2348,17 +2350,17 @@ 615026CC09C47B06C07248204EC8F6F6 /* ResourceBundle-NYTPhotoViewer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-NYTPhotoViewer-Info.plist"; sourceTree = ""; }; 61B9001906283556D5549AC98D615CFB /* dash.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = dash.png; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/dash.png; sourceTree = ""; }; 61C0AF7CCA5E3FEE9E9D52B8607EE7C0 /* Pods-Freetime.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Freetime.debug.xcconfig"; sourceTree = ""; }; - 61E6F2713CD3C51C79501EBF806232B5 /* highlight.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = highlight.min.js; path = Pod/Assets/Highlighter/highlight.min.js; sourceTree = ""; }; + 61E6F2713CD3C51C79501EBF806232B5 /* highlight.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = highlight.min.js; path = Pod/Assets/Highlighter/highlight.min.js; sourceTree = ""; }; 61FCCD93B74AEABB75C2C719CC762CF0 /* IGListAdapterUpdaterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterUpdaterDelegate.h; path = Source/IGListAdapterUpdaterDelegate.h; sourceTree = ""; }; - 62099F93F5DD2274C16B678ABE5E869E /* TUSafariActivity.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = TUSafariActivity.bundle; path = "TUSafariActivity-TUSafariActivity.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + 62099F93F5DD2274C16B678ABE5E869E /* TUSafariActivity.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = TUSafariActivity.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 62123788C213A2D2807CC06FA98282ED /* Pods-Freetime-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-Freetime-frameworks.sh"; sourceTree = ""; }; - 62162666E45878AC05E57C1545985A0C /* SwipeTableOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTableOptions.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeTableOptions.html; sourceTree = ""; }; - 625FA68AF3DF1E6BFEE7C1DD2847E8C5 /* atelier-savanna-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-savanna-dark.min.css"; path = "Pod/Assets/styles/atelier-savanna-dark.min.css"; sourceTree = ""; }; + 62162666E45878AC05E57C1545985A0C /* SwipeTableOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeTableOptions.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeTableOptions.html; sourceTree = ""; }; + 625FA68AF3DF1E6BFEE7C1DD2847E8C5 /* atelier-savanna-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-savanna-dark.min.css"; path = "Pod/Assets/styles/atelier-savanna-dark.min.css"; sourceTree = ""; }; 62A46E4DBD63F5C077361EBDCAF6903B /* IGListIndexPathResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListIndexPathResult.m; path = Source/Common/IGListIndexPathResult.m; sourceTree = ""; }; - 62AB40FE4905150834EB88312097BD0C /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = es.lproj; path = Pod/Assets/es.lproj; sourceTree = ""; }; + 62AB40FE4905150834EB88312097BD0C /* es.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = es.lproj; path = Pod/Assets/es.lproj; sourceTree = ""; }; 62F8C99535F3442908DFB482077105A9 /* IGListAdapter+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListAdapter+DebugDescription.m"; path = "Source/Internal/IGListAdapter+DebugDescription.m"; sourceTree = ""; }; 631FB76E20BF40549CC472E9D8E895D5 /* Pods-FreetimeWatch Extension-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FreetimeWatch Extension-acknowledgements.plist"; sourceTree = ""; }; - 634A387ADAA29D2008B556951DCB90E4 /* autolink.c */ = {isa = PBXFileReference; includeInIndex = 1; name = autolink.c; path = Source/cmark_gfm/autolink.c; sourceTree = ""; }; + 634A387ADAA29D2008B556951DCB90E4 /* autolink.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = autolink.c; path = Source/cmark_gfm/autolink.c; sourceTree = ""; }; 63A06B681A362191DA8DF5F4AC0D6729 /* XLPagerTabStrip.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = XLPagerTabStrip.xcconfig; sourceTree = ""; }; 63BEB803080A67FC2BE6A12EE1CD51EA /* V3Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3Request.swift; path = GitHubAPI/V3Request.swift; sourceTree = ""; }; 63C16015ED3D16184C8D30499C535220 /* FLEXNetworkTransaction.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransaction.m; path = Classes/Network/FLEXNetworkTransaction.m; sourceTree = ""; }; @@ -2366,48 +2368,48 @@ 63D39BD3E10A647DEA61FC86E2411FE5 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = ""; }; 63E3DAFD310B89D4AFEEB606D291ED10 /* ConstraintView+Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ConstraintView+Extensions.swift"; path = "Source/ConstraintView+Extensions.swift"; sourceTree = ""; }; 6471A0C6B96FDA876DDF404F3354F526 /* StringHelpers-watchOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "StringHelpers-watchOS.xcconfig"; path = "../StringHelpers-watchOS/StringHelpers-watchOS.xcconfig"; sourceTree = ""; }; - 64764F2A421EA6A4CBB893BC8A08B684 /* clojure.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = clojure.min.js; path = Pod/Assets/Highlighter/languages/clojure.min.js; sourceTree = ""; }; + 64764F2A421EA6A4CBB893BC8A08B684 /* clojure.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = clojure.min.js; path = Pod/Assets/Highlighter/languages/clojure.min.js; sourceTree = ""; }; 649B5A2B69D9F7DCED2A49A471BD2E6E /* MessageViewController+MessageViewDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "MessageViewController+MessageViewDelegate.swift"; path = "MessageViewController/MessageViewController+MessageViewDelegate.swift"; sourceTree = ""; }; 64B0365038684F227E93FD57A8C09D80 /* SwipeCellKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SwipeCellKit.xcconfig; sourceTree = ""; }; 64D1BE5264E5B50D41B9440620A8CB42 /* SnapKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SnapKit-dummy.m"; sourceTree = ""; }; 650643D09798758722982686063552F2 /* ListSwiftAdapterDataSource.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListSwiftAdapterDataSource.swift; path = Source/Swift/ListSwiftAdapterDataSource.swift; sourceTree = ""; }; - 6560F45A67F3BFA01F73460E75823924 /* map.c */ = {isa = PBXFileReference; includeInIndex = 1; name = map.c; path = Source/cmark_gfm/map.c; sourceTree = ""; }; - 6589EF912B384FCADEF6C78B690B10B1 /* plugin.c */ = {isa = PBXFileReference; includeInIndex = 1; name = plugin.c; path = Source/cmark_gfm/plugin.c; sourceTree = ""; }; - 658BDFCBBFC8916D08D007A3DFCF7448 /* plaintext.c */ = {isa = PBXFileReference; includeInIndex = 1; name = plaintext.c; path = Source/cmark_gfm/plaintext.c; sourceTree = ""; }; - 6617E42DFFE113A43F0E85F0C412842D /* purebasic.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = purebasic.min.js; path = Pod/Assets/Highlighter/languages/purebasic.min.js; sourceTree = ""; }; + 6560F45A67F3BFA01F73460E75823924 /* map.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = map.c; path = Source/cmark_gfm/map.c; sourceTree = ""; }; + 6589EF912B384FCADEF6C78B690B10B1 /* plugin.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = plugin.c; path = Source/cmark_gfm/plugin.c; sourceTree = ""; }; + 658BDFCBBFC8916D08D007A3DFCF7448 /* plaintext.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = plaintext.c; path = Source/cmark_gfm/plaintext.c; sourceTree = ""; }; + 6617E42DFFE113A43F0E85F0C412842D /* purebasic.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = purebasic.min.js; path = Pod/Assets/Highlighter/languages/purebasic.min.js; sourceTree = ""; }; 66481207AA9DDA31CF2184CAED695904 /* utf8.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = utf8.h; path = Source/cmark_gfm/include/utf8.h; sourceTree = ""; }; 66E0FA519042094814878231E8E7751D /* UIView+iOS11.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIView+iOS11.swift"; path = "MessageViewController/UIView+iOS11.swift"; sourceTree = ""; }; 66E2C19DAF4D0A44DC6DBB8B79112E86 /* SwiftSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftSupport.swift; path = FBSnapshotTestCase/SwiftSupport.swift; sourceTree = ""; }; 670615F7C9312F139004912FAFF19952 /* NSAttributedStringKey+StyledText.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSAttributedStringKey+StyledText.swift"; path = "Source/NSAttributedStringKey+StyledText.swift"; sourceTree = ""; }; 672811F3BBBAC55B2AE9524FF8B8DAA2 /* Apollo-watchOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Apollo-watchOS.xcconfig"; path = "../Apollo-watchOS/Apollo-watchOS.xcconfig"; sourceTree = ""; }; - 6736D66A9C0F82AB94A5BF4E07AA4F8B /* node.c */ = {isa = PBXFileReference; includeInIndex = 1; name = node.c; path = Source/cmark_gfm/node.c; sourceTree = ""; }; - 6771A19EF2A62925C98DE50265997AD0 /* atelier-dune-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-dune-dark.min.css"; path = "Pod/Assets/styles/atelier-dune-dark.min.css"; sourceTree = ""; }; + 6736D66A9C0F82AB94A5BF4E07AA4F8B /* node.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = node.c; path = Source/cmark_gfm/node.c; sourceTree = ""; }; + 6771A19EF2A62925C98DE50265997AD0 /* atelier-dune-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-dune-dark.min.css"; path = "Pod/Assets/styles/atelier-dune-dark.min.css"; sourceTree = ""; }; 67E09F80BD53ED148CC7E0D67EE56C9D /* IGListIndexSetResult.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListIndexSetResult.m; path = Source/Common/IGListIndexSetResult.m; sourceTree = ""; }; - 6803287DA4C6D7DD4A2EC16D8091B1DD /* FMDB.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FMDB.framework; path = FMDB.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6821BC9D904D470ED1C62AF68F1AA291 /* sqf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = sqf.min.js; path = Pod/Assets/Highlighter/languages/sqf.min.js; sourceTree = ""; }; + 6803287DA4C6D7DD4A2EC16D8091B1DD /* FMDB.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FMDB.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6821BC9D904D470ED1C62AF68F1AA291 /* sqf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = sqf.min.js; path = Pod/Assets/Highlighter/languages/sqf.min.js; sourceTree = ""; }; 6823E91E0D6E08F76DCD5328E694EF24 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 68711E3ED0F75A4756124BC18D3D1BA4 /* StringHelpers-watchOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "StringHelpers-watchOS.modulemap"; path = "../StringHelpers-watchOS/StringHelpers-watchOS.modulemap"; sourceTree = ""; }; - 68A08A81B7AF58ACF072A60784F85F9D /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = jquery.min.js; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jquery.min.js; sourceTree = ""; }; - 68E87F918997ECAD6D45F44BBA9E846D /* nginx.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = nginx.min.js; path = Pod/Assets/Highlighter/languages/nginx.min.js; sourceTree = ""; }; + 68A08A81B7AF58ACF072A60784F85F9D /* jquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jquery.min.js; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jquery.min.js; sourceTree = ""; }; + 68E87F918997ECAD6D45F44BBA9E846D /* nginx.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = nginx.min.js; path = Pod/Assets/Highlighter/languages/nginx.min.js; sourceTree = ""; }; 68F3730FE43F2D87897DD9AA01035AFD /* GitHubSession-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "GitHubSession-iOS.xcconfig"; sourceTree = ""; }; 693BBA1698CB09EAED99B3928067D2D6 /* cmark_version.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmark_version.h; path = Source/cmark_gfm/include/cmark_version.h; sourceTree = ""; }; 6979F8EBE082656B4F0F5AD85755F044 /* XLPagerTabStrip.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = XLPagerTabStrip.modulemap; sourceTree = ""; }; 69CAC6339C79B814CBEAF55564EA7BC2 /* core-extensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "core-extensions.h"; path = "Source/cmark_gfm/include/core-extensions.h"; sourceTree = ""; }; 69E358AE6AC2FD9DA855A02E83743ACB /* BarView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarView.swift; path = Sources/BarView.swift; sourceTree = ""; }; 6A3E366ED6A6678AAAB481AC8B819A05 /* Anchor.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Anchor.swift; path = Source/Anchor.swift; sourceTree = ""; }; - 6A5A6C2CBD7A1C4E2545EE0F6E0B103C /* vbscript-html.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "vbscript-html.min.js"; path = "Pod/Assets/Highlighter/languages/vbscript-html.min.js"; sourceTree = ""; }; + 6A5A6C2CBD7A1C4E2545EE0F6E0B103C /* vbscript-html.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = "vbscript-html.min.js"; path = "Pod/Assets/Highlighter/languages/vbscript-html.min.js"; sourceTree = ""; }; 6A786318853026A715CE281FB8D6C97C /* FLEXDefaultsExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDefaultsExplorerViewController.h; path = Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.h; sourceTree = ""; }; 6A879F363C9C24A3F9297A881D2FE522 /* FLEX-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLEX-prefix.pch"; sourceTree = ""; }; 6C10318AB5022E9A64C937788F59D0BB /* DropdownTitleView-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DropdownTitleView-dummy.m"; sourceTree = ""; }; 6C8C5A6AB077ADAEB9BB328D4E76EAA1 /* FLEXImagePreviewViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXImagePreviewViewController.h; path = Classes/ViewHierarchy/FLEXImagePreviewViewController.h; sourceTree = ""; }; - 6CCC11C94FF566171522B6A41CF6CB28 /* vim.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = vim.min.js; path = Pod/Assets/Highlighter/languages/vim.min.js; sourceTree = ""; }; - 6CE2FA128FEAE3CFC664BB15D83C22E4 /* pojoaque.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = pojoaque.min.css; path = Pod/Assets/styles/pojoaque.min.css; sourceTree = ""; }; - 6D0C96DD45D0C520613DF2B6C0E67951 /* DateAgo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DateAgo.framework; path = "DateAgo-watchOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6CCC11C94FF566171522B6A41CF6CB28 /* vim.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = vim.min.js; path = Pod/Assets/Highlighter/languages/vim.min.js; sourceTree = ""; }; + 6CE2FA128FEAE3CFC664BB15D83C22E4 /* pojoaque.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = pojoaque.min.css; path = Pod/Assets/styles/pojoaque.min.css; sourceTree = ""; }; + 6D0C96DD45D0C520613DF2B6C0E67951 /* DateAgo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DateAgo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 6D592D6842E5D611830ED39EFFA992C4 /* StringHelpers-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "StringHelpers-iOS-prefix.pch"; sourceTree = ""; }; - 6D60FFFA81D429DCC1305BD83C9B70F5 /* SwipeActionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionStyle.html; path = docs/Enums/SwipeActionStyle.html; sourceTree = ""; }; + 6D60FFFA81D429DCC1305BD83C9B70F5 /* SwipeActionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeActionStyle.html; path = docs/Enums/SwipeActionStyle.html; sourceTree = ""; }; 6DA29FFEA810EC05E38D18AE3E98E1F9 /* NYTPhotoDismissalInteractionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoDismissalInteractionController.h; path = NYTPhotoViewer/NYTPhotoDismissalInteractionController.h; sourceTree = ""; }; 6EACFE1F9EB15ACB23657F1CD24E76C2 /* IGListAdapterUpdaterInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterUpdaterInternal.h; path = Source/Internal/IGListAdapterUpdaterInternal.h; sourceTree = ""; }; - 6EB03EB1DAF5EBAAAC39E64EBC78792E /* SwipeTransitionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTransitionStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeTransitionStyle.html; sourceTree = ""; }; + 6EB03EB1DAF5EBAAAC39E64EBC78792E /* SwipeTransitionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeTransitionStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeTransitionStyle.html; sourceTree = ""; }; 6F00820B31A40290A6DF053075C8B568 /* AlamofireNetworkActivityIndicator-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireNetworkActivityIndicator-umbrella.h"; sourceTree = ""; }; 6F15B4ECABD57F59B6E03605F8D98CE7 /* FLEXTableContentViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentViewController.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.h; sourceTree = ""; }; 6F1AB3995F8073193B1825CF1F191434 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/SDImageCache.m; sourceTree = ""; }; @@ -2415,20 +2417,20 @@ 70183B2C50ECC2169C78FA964A4C4C46 /* FLAnimatedImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLAnimatedImage-umbrella.h"; sourceTree = ""; }; 702908131E8721CE470F596E028361C7 /* DateAgo-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DateAgo-iOS-dummy.m"; sourceTree = ""; }; 7040BCB36904A1464D9A5D5FBA640923 /* FBSnapshotTestCase.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = FBSnapshotTestCase.modulemap; sourceTree = ""; }; - 705AA869EA65F88D4DFC852F7C359E02 /* GitHubAPI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GitHubAPI.framework; path = "GitHubAPI-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + 705AA869EA65F88D4DFC852F7C359E02 /* GitHubAPI.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GitHubAPI.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 706110677FE14D822A4504A00A832527 /* GraphQLSelectionSetMapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLSelectionSetMapper.swift; path = Sources/Apollo/GraphQLSelectionSetMapper.swift; sourceTree = ""; }; 70B3FF4D91D98242B158AB51F6D70AEA /* IGListKit.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListKit.h; path = Source/IGListKit.h; sourceTree = ""; }; - 712237E8F215D9F8A6AB252F2B29ADE5 /* agate.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = agate.min.css; path = Pod/Assets/styles/agate.min.css; sourceTree = ""; }; + 712237E8F215D9F8A6AB252F2B29ADE5 /* agate.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = agate.min.css; path = Pod/Assets/styles/agate.min.css; sourceTree = ""; }; 7138098D18EF503661539A2BB45D6F69 /* UICollectionView+IGListBatchUpdateData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionView+IGListBatchUpdateData.m"; path = "Source/Internal/UICollectionView+IGListBatchUpdateData.m"; sourceTree = ""; }; - 717D3867148B4D99B2FA87FAE9FEDFB0 /* zenburn.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = zenburn.min.css; path = Pod/Assets/styles/zenburn.min.css; sourceTree = ""; }; + 717D3867148B4D99B2FA87FAE9FEDFB0 /* zenburn.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = zenburn.min.css; path = Pod/Assets/styles/zenburn.min.css; sourceTree = ""; }; 719E524C312C4DB8DFEEF591C825A8D0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 71E1620D487A97FBD830E3F1CFAE7C28 /* FLEXObjectExplorerFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXObjectExplorerFactory.m; path = Classes/ObjectExplorers/FLEXObjectExplorerFactory.m; sourceTree = ""; }; 71EB8C5276BD68F223C66B61FE1ECE01 /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/gh.png; sourceTree = ""; }; 722FEB8D423C4B75B180CF3A037704D4 /* IGListAdapterDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterDataSource.h; path = Source/IGListAdapterDataSource.h; sourceTree = ""; }; - 72556D453328A1F94B7E9E60644DF9A7 /* bnf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = bnf.min.js; path = Pod/Assets/Highlighter/languages/bnf.min.js; sourceTree = ""; }; - 725E9499A9452FAA64CF1F49AEDECFA7 /* MessageViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MessageViewController.framework; path = MessageViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 72556D453328A1F94B7E9E60644DF9A7 /* bnf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = bnf.min.js; path = Pod/Assets/Highlighter/languages/bnf.min.js; sourceTree = ""; }; + 725E9499A9452FAA64CF1F49AEDECFA7 /* MessageViewController.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MessageViewController.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 72763F321D04B4E8B3DAC86D095CE95B /* BookmarkShortcutRoute.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BookmarkShortcutRoute.swift; path = GitHawkRoutes/BookmarkShortcutRoute.swift; sourceTree = ""; }; - 72D2BCA1D49ADCCC49C8B7AA6628725C /* checkbox.c */ = {isa = PBXFileReference; includeInIndex = 1; name = checkbox.c; path = Source/cmark_gfm/checkbox.c; sourceTree = ""; }; + 72D2BCA1D49ADCCC49C8B7AA6628725C /* checkbox.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = checkbox.c; path = Source/cmark_gfm/checkbox.c; sourceTree = ""; }; 7300DB8DE4436800560369C4298B2CFE /* V3File.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3File.swift; path = GitHubAPI/V3File.swift; sourceTree = ""; }; 732D8BD40F93BF61913AD1EE2C37707B /* GitHubAPI-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GitHubAPI-iOS-dummy.m"; sourceTree = ""; }; 733B55F034EC8985511EE558B67A88E4 /* FLEXArgumentInputNotSupportedView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputNotSupportedView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNotSupportedView.h; sourceTree = ""; }; @@ -2436,33 +2438,33 @@ 737BA649CA1BE0E56B7C7CA40B660D8B /* Answers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Answers.h; path = iOS/Crashlytics.framework/Headers/Answers.h; sourceTree = ""; }; 73A33D4AC798667F27333A2406339C5E /* FLEXHierarchyTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHierarchyTableViewCell.h; path = Classes/ViewHierarchy/FLEXHierarchyTableViewCell.h; sourceTree = ""; }; 73CF824CB9DC15AC6D6FC16DC53237C5 /* FLEXManager+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FLEXManager+Private.h"; path = "Classes/Manager/FLEXManager+Private.h"; sourceTree = ""; }; - 73D3FD8C480FDED474B9D3A7E28C4686 /* docSet.dsidx */ = {isa = PBXFileReference; includeInIndex = 1; name = docSet.dsidx; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/docSet.dsidx; sourceTree = ""; }; + 73D3FD8C480FDED474B9D3A7E28C4686 /* docSet.dsidx */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = docSet.dsidx; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/docSet.dsidx; sourceTree = ""; }; 73F06930AC813166F6522E6AC3EBB62C /* Routable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Routable.swift; path = GitHawkRoutes/Routable.swift; sourceTree = ""; }; 73FD85576B1300768F75F819479050A6 /* FLEXNetworkRecorder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkRecorder.m; path = Classes/Network/FLEXNetworkRecorder.m; sourceTree = ""; }; - 741D5C33B44367C4F0DCF79F28DF1246 /* ScaleAndAlphaExpansion.html */ = {isa = PBXFileReference; includeInIndex = 1; name = ScaleAndAlphaExpansion.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleAndAlphaExpansion.html; sourceTree = ""; }; + 741D5C33B44367C4F0DCF79F28DF1246 /* ScaleAndAlphaExpansion.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = ScaleAndAlphaExpansion.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/ScaleAndAlphaExpansion.html; sourceTree = ""; }; 7421A43528BBC7BAD38D5C0D9DF0D2AA /* FLEXArrayExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArrayExplorerViewController.h; path = Classes/ObjectExplorers/FLEXArrayExplorerViewController.h; sourceTree = ""; }; 7471C59CE52153EC2A8DA26265808206 /* Alamofire-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Alamofire-iOS.modulemap"; sourceTree = ""; }; - 74A2ACEB644B46056F5D6E64E20A6C76 /* routeros.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = routeros.min.css; path = Pod/Assets/styles/routeros.min.css; sourceTree = ""; }; - 74B7EC6C0550138DA7F293B476CC7E2C /* paraiso-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "paraiso-light.min.css"; path = "Pod/Assets/styles/paraiso-light.min.css"; sourceTree = ""; }; + 74A2ACEB644B46056F5D6E64E20A6C76 /* routeros.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = routeros.min.css; path = Pod/Assets/styles/routeros.min.css; sourceTree = ""; }; + 74B7EC6C0550138DA7F293B476CC7E2C /* paraiso-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "paraiso-light.min.css"; path = "Pod/Assets/styles/paraiso-light.min.css"; sourceTree = ""; }; 74D7736D8987B4202948FA0DAD4C8CFF /* SwiftAST.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwiftAST.swift; path = Source/SwiftAST.swift; sourceTree = ""; }; 74FEC5831985C0AC90B5FF11D487F4DA /* FLEXSystemLogMessage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSystemLogMessage.h; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.h; sourceTree = ""; }; 750BFC9402C197EE2F044BBC0393E73D /* StringHelpers-watchOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StringHelpers-watchOS-umbrella.h"; path = "../StringHelpers-watchOS/StringHelpers-watchOS-umbrella.h"; sourceTree = ""; }; - 7551C9CC7B58DFBDA141474CE00848DA /* julia-repl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "julia-repl.min.js"; path = "Pod/Assets/Highlighter/languages/julia-repl.min.js"; sourceTree = ""; }; - 757D3853BCEC1D06F8832302356E7FB7 /* atelier-plateau-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-plateau-dark.min.css"; path = "Pod/Assets/styles/atelier-plateau-dark.min.css"; sourceTree = ""; }; - 75B1224718270797DD356E02CB914E9A /* dns.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = dns.min.js; path = Pod/Assets/Highlighter/languages/dns.min.js; sourceTree = ""; }; + 7551C9CC7B58DFBDA141474CE00848DA /* julia-repl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = "julia-repl.min.js"; path = "Pod/Assets/Highlighter/languages/julia-repl.min.js"; sourceTree = ""; }; + 757D3853BCEC1D06F8832302356E7FB7 /* atelier-plateau-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-plateau-dark.min.css"; path = "Pod/Assets/styles/atelier-plateau-dark.min.css"; sourceTree = ""; }; + 75B1224718270797DD356E02CB914E9A /* dns.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = dns.min.js; path = Pod/Assets/Highlighter/languages/dns.min.js; sourceTree = ""; }; 75BF03AF4DE9A53173A4C41F10CFA565 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 75E7446B3B01C1671A5DB2896AC0F421 /* SwipeVerticalAlignment.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeVerticalAlignment.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeVerticalAlignment.html; sourceTree = ""; }; + 75E7446B3B01C1671A5DB2896AC0F421 /* SwipeVerticalAlignment.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeVerticalAlignment.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeVerticalAlignment.html; sourceTree = ""; }; 766A4361D706CBE8BBDBFCE07534694B /* DateAgo-watchOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DateAgo-watchOS-dummy.m"; path = "../DateAgo-watchOS/DateAgo-watchOS-dummy.m"; sourceTree = ""; }; - 7672E8BD3B5664EB2F0E9B22F8CDC6C2 /* eu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = eu.lproj; path = Pod/Assets/eu.lproj; sourceTree = ""; }; + 7672E8BD3B5664EB2F0E9B22F8CDC6C2 /* eu.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = eu.lproj; path = Pod/Assets/eu.lproj; sourceTree = ""; }; 76AC536F9B1E561AE35FA51312EA9D8A /* FLEXUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXUtility.m; path = Classes/Utility/FLEXUtility.m; sourceTree = ""; }; 76B0240D3F921C4AC21B92CBDA211C82 /* GitHubAccessTokenRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GitHubAccessTokenRequest.swift; path = GitHubAPI/GitHubAccessTokenRequest.swift; sourceTree = ""; }; - 76DB70267BA7C423014DC7ED61AC8D52 /* qtcreator_dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = qtcreator_dark.min.css; path = Pod/Assets/styles/qtcreator_dark.min.css; sourceTree = ""; }; + 76DB70267BA7C423014DC7ED61AC8D52 /* qtcreator_dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = qtcreator_dark.min.css; path = Pod/Assets/styles/qtcreator_dark.min.css; sourceTree = ""; }; 76F6A8A3BC79110787478B881AAB24A7 /* UIImage+Diff.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Diff.m"; path = "FBSnapshotTestCase/Categories/UIImage+Diff.m"; sourceTree = ""; }; 772E7E9D47B5DFBD1DC2916A24ADFFBD /* FLEXUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXUtility.h; path = Classes/Utility/FLEXUtility.h; sourceTree = ""; }; 7750BB105D988B6BFF727775822536EC /* GitHubAPI-watchOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GitHubAPI-watchOS-umbrella.h"; path = "../GitHubAPI-watchOS/GitHubAPI-watchOS-umbrella.h"; sourceTree = ""; }; 7754381C3509604D9D9B81AB035A1F98 /* FLEXPropertyEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXPropertyEditorViewController.h; path = Classes/Editing/FLEXPropertyEditorViewController.h; sourceTree = ""; }; 7784A73CE877FEEB7CAD1C33FFC2CFB2 /* config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = config.h; path = Source/cmark_gfm/include/config.h; sourceTree = ""; }; - 77855C6E24F0BE9C04651A79944E7095 /* github-gist.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "github-gist.min.css"; path = "Pod/Assets/styles/github-gist.min.css"; sourceTree = ""; }; + 77855C6E24F0BE9C04651A79944E7095 /* github-gist.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "github-gist.min.css"; path = "Pod/Assets/styles/github-gist.min.css"; sourceTree = ""; }; 7794FE48B7BC95371596593EF412B414 /* Pods-Freetime.testflight.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Freetime.testflight.xcconfig"; sourceTree = ""; }; 77C6200FEA9E5C51D66BF6D422EF85BA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 7814E349C1D718446F325A9999720A76 /* HTTPRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = HTTPRequest.swift; path = GitHubAPI/HTTPRequest.swift; sourceTree = ""; }; @@ -2476,22 +2478,22 @@ 78FAEF18A5FA20F49D4FED6236C8062F /* tagfilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = tagfilter.h; path = Source/cmark_gfm/include/tagfilter.h; sourceTree = ""; }; 792D433CBF156887B6EE79B9A1FE0789 /* RubberBandDistance.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RubberBandDistance.swift; path = Source/RubberBandDistance.swift; sourceTree = ""; }; 79398C801C8879E5D0C779354146D5C8 /* cmark-gfm-swift.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "cmark-gfm-swift.xcconfig"; sourceTree = ""; }; - 793D25880A7ADB38F0962975D190F96E /* Pods_Freetime.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_Freetime.framework; path = "Pods-Freetime.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 79467EFA8D1D557A66713EF6F728280F /* monkey.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = monkey.min.js; path = Pod/Assets/Highlighter/languages/monkey.min.js; sourceTree = ""; }; + 793D25880A7ADB38F0962975D190F96E /* Pods_Freetime.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Freetime.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 79467EFA8D1D557A66713EF6F728280F /* monkey.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = monkey.min.js; path = Pod/Assets/Highlighter/languages/monkey.min.js; sourceTree = ""; }; 7961DAD04065B09AFC3348F46FE72D1E /* FLEXHeapEnumerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXHeapEnumerator.m; path = Classes/Utility/FLEXHeapEnumerator.m; sourceTree = ""; }; 79C587E7C74449369A931B7A500DCA3F /* V3RepositoryReadmeRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3RepositoryReadmeRequest.swift; path = GitHubAPI/V3RepositoryReadmeRequest.swift; sourceTree = ""; }; 79CD152C70E8F8D5236FDACECD96D2EA /* Pods-FreetimeTests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FreetimeTests-acknowledgements.plist"; sourceTree = ""; }; - 79EF371EA6B7E26B02E10FEBB24110A0 /* XLPagerTabStrip.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = XLPagerTabStrip.framework; path = XLPagerTabStrip.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 79EF371EA6B7E26B02E10FEBB24110A0 /* XLPagerTabStrip.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = XLPagerTabStrip.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 79FE3ED85D899C44AFF16BDEA5402A88 /* FBSnapshotTestCase-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FBSnapshotTestCase-dummy.m"; sourceTree = ""; }; - 7A1305E55D192106800A3235B8EA5642 /* prolog.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = prolog.min.js; path = Pod/Assets/Highlighter/languages/prolog.min.js; sourceTree = ""; }; - 7A8964FA0B6F53D2F05FC868BAF995C2 /* sunburst.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = sunburst.min.css; path = Pod/Assets/styles/sunburst.min.css; sourceTree = ""; }; + 7A1305E55D192106800A3235B8EA5642 /* prolog.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = prolog.min.js; path = Pod/Assets/Highlighter/languages/prolog.min.js; sourceTree = ""; }; + 7A8964FA0B6F53D2F05FC868BAF995C2 /* sunburst.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = sunburst.min.css; path = Pod/Assets/styles/sunburst.min.css; sourceTree = ""; }; 7A89ED5661282FE920DB7ED0146CBB2A /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMDatabaseAdditions.h; path = src/fmdb/FMDatabaseAdditions.h; sourceTree = ""; }; 7AA07A2D4FEBDB438A53026D8833D4E5 /* FLAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImageView.h; path = FLAnimatedImage/FLAnimatedImageView.h; sourceTree = ""; }; - 7AC17B0514031FB5814BFC07137F24D1 /* gruvbox-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "gruvbox-light.min.css"; path = "Pod/Assets/styles/gruvbox-light.min.css"; sourceTree = ""; }; + 7AC17B0514031FB5814BFC07137F24D1 /* gruvbox-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "gruvbox-light.min.css"; path = "Pod/Assets/styles/gruvbox-light.min.css"; sourceTree = ""; }; 7B758CD61AB206E2C4DDCB1DD9314125 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = ""; }; 7B785A16C3DAAB799625CC59470543B4 /* buffer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = buffer.h; path = Source/cmark_gfm/include/buffer.h; sourceTree = ""; }; - 7B9458575A790239FD9A42695F0C4799 /* Pods_FreetimeWatch.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_FreetimeWatch.framework; path = "Pods-FreetimeWatch.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 7BA389EB64361EC1FF8FFDB5DF2A6C9E /* glsl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = glsl.min.js; path = Pod/Assets/Highlighter/languages/glsl.min.js; sourceTree = ""; }; + 7B9458575A790239FD9A42695F0C4799 /* Pods_FreetimeWatch.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FreetimeWatch.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7BA389EB64361EC1FF8FFDB5DF2A6C9E /* glsl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = glsl.min.js; path = Pod/Assets/Highlighter/languages/glsl.min.js; sourceTree = ""; }; 7BEA7A8054E2938AC802B5C220B5F9EC /* IGListSectionMap+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListSectionMap+DebugDescription.m"; path = "Source/Internal/IGListSectionMap+DebugDescription.m"; sourceTree = ""; }; 7C21E8EB9A4E1DDDEE9F09DCC5FF3FC8 /* ContextMenuDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextMenuDelegate.swift; path = ContextMenu/ContextMenuDelegate.swift; sourceTree = ""; }; 7C62550173E4A8FC7493265E1DBEC016 /* DateAgo-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "DateAgo-iOS.xcconfig"; sourceTree = ""; }; @@ -2503,97 +2505,97 @@ 7D20C5DE29D8EC18BAD49DA06ACD0A4F /* StringHelpers-watchOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "StringHelpers-watchOS-prefix.pch"; path = "../StringHelpers-watchOS/StringHelpers-watchOS-prefix.pch"; sourceTree = ""; }; 7D399AF96BC080AF33CB76EB06335578 /* StyledTextKit-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "StyledTextKit-umbrella.h"; sourceTree = ""; }; 7DB06452D646671313F3FD6B4F4C3C99 /* DropdownTitleView-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DropdownTitleView-prefix.pch"; sourceTree = ""; }; - 7DCBAB652118171BC62649B27FFA6678 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; + 7DCBAB652118171BC62649B27FFA6678 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = ""; }; 7DF32EB93C2BEEE0781F0E5D319C21ED /* Pods-FreetimeWatch Extension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeWatch Extension.release.xcconfig"; sourceTree = ""; }; 7E019D75685BEAA856071BA7849D3DA9 /* IGListReloadIndexPath.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListReloadIndexPath.h; path = Source/Internal/IGListReloadIndexPath.h; sourceTree = ""; }; - 7E8122698CD979EC53E98F1794ECFA95 /* xt256.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = xt256.min.css; path = Pod/Assets/styles/xt256.min.css; sourceTree = ""; }; + 7E8122698CD979EC53E98F1794ECFA95 /* xt256.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = xt256.min.css; path = Pod/Assets/styles/xt256.min.css; sourceTree = ""; }; 7E8FF8A65EFE87424C6F112B6C534ED2 /* Squawk.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Squawk.swift; path = Source/Squawk.swift; sourceTree = ""; }; - 7ED2D76F8C8ECC189B2997BF2032B912 /* matlab.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = matlab.min.js; path = Pod/Assets/Highlighter/languages/matlab.min.js; sourceTree = ""; }; - 7EF0DAD7BEEB965DE7F1997A6875D907 /* IGListKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = IGListKit.framework; path = IGListKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7ED2D76F8C8ECC189B2997BF2032B912 /* matlab.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = matlab.min.js; path = Pod/Assets/Highlighter/languages/matlab.min.js; sourceTree = ""; }; + 7EF0DAD7BEEB965DE7F1997A6875D907 /* IGListKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IGListKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 7F2B6F5CA1B1A276490EB8F62EABD6B2 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 7F4BC97FFFA58139248BA306E25D3934 /* ocean.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = ocean.min.css; path = Pod/Assets/styles/ocean.min.css; sourceTree = ""; }; + 7F4BC97FFFA58139248BA306E25D3934 /* ocean.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = ocean.min.css; path = Pod/Assets/styles/ocean.min.css; sourceTree = ""; }; 7F55059A43AF90F7D9D5989A8F90E0A9 /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; }; - 7F6F4DBF60D91A11E9EF85FBC0DB3256 /* lsl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = lsl.min.js; path = Pod/Assets/Highlighter/languages/lsl.min.js; sourceTree = ""; }; + 7F6F4DBF60D91A11E9EF85FBC0DB3256 /* lsl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = lsl.min.js; path = Pod/Assets/Highlighter/languages/lsl.min.js; sourceTree = ""; }; 7FBB6D6BDD92335357CA5A486544EA1D /* FLEXDefaultEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultEditorViewController.m; path = Classes/Editing/FLEXDefaultEditorViewController.m; sourceTree = ""; }; - 805076FC39FD491CF75573B3B388658A /* ir-black.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "ir-black.min.css"; path = "Pod/Assets/styles/ir-black.min.css"; sourceTree = ""; }; - 80686F094C30EDB1750F89FDA81A26AF /* CompletionAnimation.html */ = {isa = PBXFileReference; includeInIndex = 1; name = CompletionAnimation.html; path = docs/Structs/SwipeExpansionStyle/CompletionAnimation.html; sourceTree = ""; }; - 809528CF0CC73B72FAC3B57897ABB1D0 /* groovy.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = groovy.min.js; path = Pod/Assets/Highlighter/languages/groovy.min.js; sourceTree = ""; }; - 80CD27A36DD033AE27265E5BBE1426DE /* SwipeExpanding.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeExpanding.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeExpanding.html; sourceTree = ""; }; + 805076FC39FD491CF75573B3B388658A /* ir-black.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "ir-black.min.css"; path = "Pod/Assets/styles/ir-black.min.css"; sourceTree = ""; }; + 80686F094C30EDB1750F89FDA81A26AF /* CompletionAnimation.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = CompletionAnimation.html; path = docs/Structs/SwipeExpansionStyle/CompletionAnimation.html; sourceTree = ""; }; + 809528CF0CC73B72FAC3B57897ABB1D0 /* groovy.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = groovy.min.js; path = Pod/Assets/Highlighter/languages/groovy.min.js; sourceTree = ""; }; + 80CD27A36DD033AE27265E5BBE1426DE /* SwipeExpanding.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeExpanding.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeExpanding.html; sourceTree = ""; }; 80E3483A49BE3D42296F4C10FB702DDC /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; 8138D27ED1C6973D7BDF0F8F3BEA7326 /* Pods-FreetimeWatch-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-FreetimeWatch-dummy.m"; sourceTree = ""; }; - 81553746F8773B3C764DF5DC4AE41791 /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Protocols.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols.html; sourceTree = ""; }; + 81553746F8773B3C764DF5DC4AE41791 /* Protocols.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Protocols.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols.html; sourceTree = ""; }; 8198C52438A9A5446DAC81C8DF2EDD7F /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = ""; }; 82173DF1C72CE5974B725F99029CC4F6 /* SwipeTableViewCell+Display.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SwipeTableViewCell+Display.swift"; path = "Source/SwipeTableViewCell+Display.swift"; sourceTree = ""; }; - 822459E81562F16ED49484F038FD301A /* lua.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = lua.min.js; path = Pod/Assets/Highlighter/languages/lua.min.js; sourceTree = ""; }; + 822459E81562F16ED49484F038FD301A /* lua.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = lua.min.js; path = Pod/Assets/Highlighter/languages/lua.min.js; sourceTree = ""; }; 828FA1EBAD874AAE2DB3E5E6D53EAA7B /* PagerTabStripBehaviour.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PagerTabStripBehaviour.swift; path = Sources/PagerTabStripBehaviour.swift; sourceTree = ""; }; - 82CAB4D28197CC054D1C714560E3A035 /* brainfuck.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = brainfuck.min.js; path = Pod/Assets/Highlighter/languages/brainfuck.min.js; sourceTree = ""; }; + 82CAB4D28197CC054D1C714560E3A035 /* brainfuck.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = brainfuck.min.js; path = Pod/Assets/Highlighter/languages/brainfuck.min.js; sourceTree = ""; }; 82FF3B87EC4709851DD9C6B31C711BE5 /* Pods-FreetimeWatch Extension-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FreetimeWatch Extension-frameworks.sh"; sourceTree = ""; }; 831D6C9285BE63EC2D06A809B65A6229 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/UIImage+GIF.h"; sourceTree = ""; }; 83472095668EBED297D0FF05107F9FDF /* ContextMenu+ContainerStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ContextMenu+ContainerStyle.swift"; path = "ContextMenu/ContextMenu+ContainerStyle.swift"; sourceTree = ""; }; - 83486E59CA50BA3C205AF99930D104E8 /* tp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = tp.min.js; path = Pod/Assets/Highlighter/languages/tp.min.js; sourceTree = ""; }; - 836075DE5656861E4B9272F7164A28DD /* x86asm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = x86asm.min.js; path = Pod/Assets/Highlighter/languages/x86asm.min.js; sourceTree = ""; }; - 8363EBCE2B61327DE47A06B294070E09 /* GitHubAPI.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = GitHubAPI.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 83486E59CA50BA3C205AF99930D104E8 /* tp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = tp.min.js; path = Pod/Assets/Highlighter/languages/tp.min.js; sourceTree = ""; }; + 836075DE5656861E4B9272F7164A28DD /* x86asm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = x86asm.min.js; path = Pod/Assets/Highlighter/languages/x86asm.min.js; sourceTree = ""; }; + 8363EBCE2B61327DE47A06B294070E09 /* GitHubAPI.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = GitHubAPI.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 83C8C5072EFA76C8E81EDFA90DD949B1 /* Squawk.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Squawk.xcconfig; sourceTree = ""; }; 83CC48592578293D4D4A5971496AB132 /* Pods-FreetimeWatch Extension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-FreetimeWatch Extension.modulemap"; sourceTree = ""; }; 83D471F568956A07C5CFCFB2BC41E280 /* IGListBindingSectionControllerSelectionDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBindingSectionControllerSelectionDelegate.h; path = Source/IGListBindingSectionControllerSelectionDelegate.h; sourceTree = ""; }; 83E484CAB6B12E78C50BED502D1B3F93 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; 8464607F30B80269B206E865B4068A3A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8478D140CE17B5CBC591F0F67CDE2187 /* crystal.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = crystal.min.js; path = Pod/Assets/Highlighter/languages/crystal.min.js; sourceTree = ""; }; + 8478D140CE17B5CBC591F0F67CDE2187 /* crystal.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = crystal.min.js; path = Pod/Assets/Highlighter/languages/crystal.min.js; sourceTree = ""; }; 84B428ED57E71B158F491B1A90D02E88 /* FLEXSystemLogTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogTableViewController.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogTableViewController.m; sourceTree = ""; }; - 84E5C0A39ADE0BF530C7428E0EB8AB97 /* routeros.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = routeros.min.js; path = Pod/Assets/Highlighter/languages/routeros.min.js; sourceTree = ""; }; - 84EC6B4286C7E5F90D3100C15B7DEFF9 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; name = table.c; path = Source/cmark_gfm/table.c; sourceTree = ""; }; - 84FC36EF12F90B0CB441298F2BDFA003 /* Target.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Target.html; path = docs/Structs/SwipeExpansionStyle/Target.html; sourceTree = ""; }; + 84E5C0A39ADE0BF530C7428E0EB8AB97 /* routeros.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = routeros.min.js; path = Pod/Assets/Highlighter/languages/routeros.min.js; sourceTree = ""; }; + 84EC6B4286C7E5F90D3100C15B7DEFF9 /* table.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = table.c; path = Source/cmark_gfm/table.c; sourceTree = ""; }; + 84FC36EF12F90B0CB441298F2BDFA003 /* Target.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Target.html; path = docs/Structs/SwipeExpansionStyle/Target.html; sourceTree = ""; }; 8530897184D9CB117149C105BD5DB9ED /* ContextMenu-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ContextMenu-dummy.m"; sourceTree = ""; }; - 85422D5BA4BA3FF6D648D7947D9957DB /* python.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = python.min.js; path = Pod/Assets/Highlighter/languages/python.min.js; sourceTree = ""; }; + 85422D5BA4BA3FF6D648D7947D9957DB /* python.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = python.min.js; path = Pod/Assets/Highlighter/languages/python.min.js; sourceTree = ""; }; 8584C2BF4CF17B8560E89930E6760AFF /* IGListCollectionViewLayoutInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCollectionViewLayoutInternal.h; path = Source/Internal/IGListCollectionViewLayoutInternal.h; sourceTree = ""; }; 859B78AD535E6157FBB8CBBF30049742 /* DateAgo-watchOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "DateAgo-watchOS.xcconfig"; path = "../DateAgo-watchOS/DateAgo-watchOS.xcconfig"; sourceTree = ""; }; 859E26A71F5AC88A7AC3808E5533DE76 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = ""; }; 85AE32C2C050E06816462397BE65B403 /* FlatCache-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FlatCache-dummy.m"; sourceTree = ""; }; 85AE6CA7CB3DD6752BEB3427C029AE7F /* IGListGenericSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListGenericSectionController.h; path = Source/IGListGenericSectionController.h; sourceTree = ""; }; - 85B9267E3133ABC4AAF84C72194312AE /* GitHawkRoutes.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GitHawkRoutes.framework; path = GitHawkRoutes.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 85B9267E3133ABC4AAF84C72194312AE /* GitHawkRoutes.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GitHawkRoutes.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 85E15B64EAE2C52B017F2DA7A612DBAD /* Pods-FreetimeTests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-FreetimeTests.modulemap"; sourceTree = ""; }; 8603148D1F5FAF6061C070C8E1F26FDF /* FLEXFileBrowserTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserTableViewController.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserTableViewController.m; sourceTree = ""; }; - 86936339C31C53377C5087632AE0E3ED /* ImageAlertAction.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ImageAlertAction.framework; path = ImageAlertAction.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 86959D24AD17212D4FEA9D5B43CCDE19 /* mojolicious.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = mojolicious.min.js; path = Pod/Assets/Highlighter/languages/mojolicious.min.js; sourceTree = ""; }; + 86936339C31C53377C5087632AE0E3ED /* ImageAlertAction.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ImageAlertAction.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 86959D24AD17212D4FEA9D5B43CCDE19 /* mojolicious.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = mojolicious.min.js; path = Pod/Assets/Highlighter/languages/mojolicious.min.js; sourceTree = ""; }; 869D16EBA1FC3E47C98850E36C43B1FD /* GitHubSessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GitHubSessionManager.swift; path = GitHubSession/GitHubSessionManager.swift; sourceTree = ""; }; - 86ECF9911F6186EE833B8E569555190C /* vbscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = vbscript.min.js; path = Pod/Assets/Highlighter/languages/vbscript.min.js; sourceTree = ""; }; + 86ECF9911F6186EE833B8E569555190C /* vbscript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = vbscript.min.js; path = Pod/Assets/Highlighter/languages/vbscript.min.js; sourceTree = ""; }; 86F9E2895BF121D16AA1A34B167B5579 /* ConstraintInsets.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintInsets.swift; path = Source/ConstraintInsets.swift; sourceTree = ""; }; 86FD03BB62B24FC85D64A0C8060C2A7B /* SnapKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SnapKit-prefix.pch"; sourceTree = ""; }; 870F6E80F740BF6099450CE2A6E7E978 /* IGListBindingSectionController+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListBindingSectionController+DebugDescription.h"; path = "Source/Internal/IGListBindingSectionController+DebugDescription.h"; sourceTree = ""; }; 871E437E4C0035655CED4E9DE05FD669 /* NYTPhotosOverlayView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotosOverlayView.h; path = NYTPhotoViewer/NYTPhotosOverlayView.h; sourceTree = ""; }; - 874E77514E2FE86D2DEAA02D1B124AA0 /* GitHubSession.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = GitHubSession.framework; path = "GitHubSession-iOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8794E322D9D37B72049C3F24EBAF681D /* SwipeActionsOrientation.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionsOrientation.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionsOrientation.html; sourceTree = ""; }; - 879B9CF5487E19561371580B5806CCCC /* excel.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = excel.min.js; path = Pod/Assets/Highlighter/languages/excel.min.js; sourceTree = ""; }; - 87AE000A61CBF6CCF04C6C119392CFE2 /* lisp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = lisp.min.js; path = Pod/Assets/Highlighter/languages/lisp.min.js; sourceTree = ""; }; + 874E77514E2FE86D2DEAA02D1B124AA0 /* GitHubSession.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GitHubSession.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8794E322D9D37B72049C3F24EBAF681D /* SwipeActionsOrientation.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeActionsOrientation.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionsOrientation.html; sourceTree = ""; }; + 879B9CF5487E19561371580B5806CCCC /* excel.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = excel.min.js; path = Pod/Assets/Highlighter/languages/excel.min.js; sourceTree = ""; }; + 87AE000A61CBF6CCF04C6C119392CFE2 /* lisp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = lisp.min.js; path = Pod/Assets/Highlighter/languages/lisp.min.js; sourceTree = ""; }; 880C41E5CF7C2E1F2CE5983B12B521EE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 88115CF8FFCD76DBDCCF13D6450F24C5 /* markdown.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = markdown.min.js; path = Pod/Assets/Highlighter/languages/markdown.min.js; sourceTree = ""; }; + 88115CF8FFCD76DBDCCF13D6450F24C5 /* markdown.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = markdown.min.js; path = Pod/Assets/Highlighter/languages/markdown.min.js; sourceTree = ""; }; 88152EA45D2AA390DB09BFF71F31724F /* Mappings.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mappings.swift; path = Sources/HTMLString/Mappings.swift; sourceTree = ""; }; - 8838845FF09E9CA00A560C3BAD4E919A /* googlecode.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = googlecode.min.css; path = Pod/Assets/styles/googlecode.min.css; sourceTree = ""; }; + 8838845FF09E9CA00A560C3BAD4E919A /* googlecode.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = googlecode.min.css; path = Pod/Assets/styles/googlecode.min.css; sourceTree = ""; }; 883D88BF2D8FE0A84B2C863CE02B3E36 /* LayoutConstraintItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayoutConstraintItem.swift; path = Source/LayoutConstraintItem.swift; sourceTree = ""; }; 88A0207A41E3A27C3C9A9A37E9E40A77 /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/img/carat.png; sourceTree = ""; }; 88A19193124E14004E93FCB7F7F72A40 /* carat.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = carat.png; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/img/carat.png; sourceTree = ""; }; 88BBAC9FC7AD2B8CCF4959DA56D92C58 /* SwipeTransitionLayout.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeTransitionLayout.swift; path = Source/SwipeTransitionLayout.swift; sourceTree = ""; }; - 890FBAB9324DAAED82B77E92B6B31E7C /* rainbow.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = rainbow.min.css; path = Pod/Assets/styles/rainbow.min.css; sourceTree = ""; }; + 890FBAB9324DAAED82B77E92B6B31E7C /* rainbow.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = rainbow.min.css; path = Pod/Assets/styles/rainbow.min.css; sourceTree = ""; }; 898546FF75DE81B9242FF2DA647BEE43 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 898F4811A1A34DD8BDD289711DCC935A /* ConfiguredNetworkers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConfiguredNetworkers.swift; path = GitHubAPI/ConfiguredNetworkers.swift; sourceTree = ""; }; 89A1AC771E31D89CF172BD04932217A3 /* safari-7~iPad.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari-7~iPad.png"; path = "Pod/Assets/safari-7~iPad.png"; sourceTree = ""; }; 8A05177ADA2EFD34570CB0CEE17F65BA /* SegmentedPagerTabStripViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SegmentedPagerTabStripViewController.swift; path = Sources/SegmentedPagerTabStripViewController.swift; sourceTree = ""; }; - 8A15801B2842D205B4BEC0D1BF1DABD7 /* django.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = django.min.js; path = Pod/Assets/Highlighter/languages/django.min.js; sourceTree = ""; }; + 8A15801B2842D205B4BEC0D1BF1DABD7 /* django.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = django.min.js; path = Pod/Assets/Highlighter/languages/django.min.js; sourceTree = ""; }; 8A6F1F0C8870A50E59ECB1AFD6344133 /* FLEXArgumentInputFontView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputFontView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.m; sourceTree = ""; }; 8ABB9B1AB5B247167FE4BC9C71011F2D /* FMDatabase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FMDatabase.h; path = src/fmdb/FMDatabase.h; sourceTree = ""; }; 8AD09AD1278DB97F3689A0FFDC31A14E /* NYTPhotoViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoViewController.h; path = NYTPhotoViewer/NYTPhotoViewController.h; sourceTree = ""; }; - 8AE265D9FEA31C13D0E5A4D9536EB401 /* houdini_html_e.c */ = {isa = PBXFileReference; includeInIndex = 1; name = houdini_html_e.c; path = Source/cmark_gfm/houdini_html_e.c; sourceTree = ""; }; + 8AE265D9FEA31C13D0E5A4D9536EB401 /* houdini_html_e.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = houdini_html_e.c; path = Source/cmark_gfm/houdini_html_e.c; sourceTree = ""; }; 8AEB60E7B57EF2D1C2F530F97C70B82E /* String+HashDisplay.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+HashDisplay.swift"; path = "StringHelpers/String+HashDisplay.swift"; sourceTree = ""; }; 8AF2CA638D90BCBCF94CD7036AB731C0 /* FLEXArgumentInputColorView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputColorView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputColorView.h; sourceTree = ""; }; 8B24265F11CE0815EACA1563DEC7A872 /* V3MergePullRequestReqeust.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3MergePullRequestReqeust.swift; path = GitHubAPI/V3MergePullRequestReqeust.swift; sourceTree = ""; }; - 8B262B722349FCF7A57A32C4CD6465F1 /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; name = jazzy.css; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/jazzy.css; sourceTree = ""; }; + 8B262B722349FCF7A57A32C4CD6465F1 /* jazzy.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = jazzy.css; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/jazzy.css; sourceTree = ""; }; 8B6443E5984067B306BA5C2E87983646 /* CLSLogging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSLogging.h; path = iOS/Crashlytics.framework/Headers/CLSLogging.h; sourceTree = ""; }; 8B7F0B777EE9D99033E339C2E6EDE9D3 /* FMDB-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FMDB-dummy.m"; sourceTree = ""; }; 8BA069B61F827A2FEF21DD7BBB0B2441 /* Deprecated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Deprecated.swift; path = Sources/HTMLString/Deprecated.swift; sourceTree = ""; }; 8C0F8324F85712E85FAEE2DFC2C90BD6 /* StringHelpers-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "StringHelpers-iOS-umbrella.h"; sourceTree = ""; }; 8C77A6FBF4CE6FBB4B954F421674A9FA /* Alamofire-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Alamofire-iOS.xcconfig"; sourceTree = ""; }; 8C92A831A390CA24327F35C15DC42D82 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = ""; }; - 8CD17B0C3FA0F93DDC732318C849607B /* bash.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = bash.min.js; path = Pod/Assets/Highlighter/languages/bash.min.js; sourceTree = ""; }; + 8CD17B0C3FA0F93DDC732318C849607B /* bash.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = bash.min.js; path = Pod/Assets/Highlighter/languages/bash.min.js; sourceTree = ""; }; 8CD3B8460ABB19E9F8A59FBF5E431ACB /* FLEXExplorerToolbar.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerToolbar.m; path = Classes/Toolbar/FLEXExplorerToolbar.m; sourceTree = ""; }; 8CFF789473BF55EDD48EF675F3AD3EAC /* IGListMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListMacros.h; path = Source/Common/IGListMacros.h; sourceTree = ""; }; 8D1B6F3071D87DB3FA87C45CB107ED1F /* ContextMenu+Options.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ContextMenu+Options.swift"; path = "ContextMenu/ContextMenu+Options.swift"; sourceTree = ""; }; @@ -2606,95 +2608,95 @@ 8F41927BEE0A72B6884C5E9798387252 /* NYTPhotosOverlayView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotosOverlayView.m; path = NYTPhotoViewer/NYTPhotosOverlayView.m; sourceTree = ""; }; 8F65D44FB9EF52E6A831ED21E3AE51DE /* Fabric.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Fabric.framework; path = iOS/Fabric.framework; sourceTree = ""; }; 8F7791AD813CF1F8B9AA3C0EA4F7EDFC /* FXPageControl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FXPageControl.h; path = Sources/FXPageControl.h; sourceTree = ""; }; - 8F7E94AA8EF52D9E1CA335F23F46D2FD /* footnotes.c */ = {isa = PBXFileReference; includeInIndex = 1; name = footnotes.c; path = Source/cmark_gfm/footnotes.c; sourceTree = ""; }; + 8F7E94AA8EF52D9E1CA335F23F46D2FD /* footnotes.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = footnotes.c; path = Source/cmark_gfm/footnotes.c; sourceTree = ""; }; 8F869BD317FCCB2D050AEBE30D6AD1E8 /* V3EditCommentRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3EditCommentRequest.swift; path = GitHubAPI/V3EditCommentRequest.swift; sourceTree = ""; }; - 8F9D08975CE8CF47F4144247D80DD075 /* atom-one-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atom-one-dark.min.css"; path = "Pod/Assets/styles/atom-one-dark.min.css"; sourceTree = ""; }; - 8FAA7007746A9A080B3041E92CFCEF85 /* basic.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = basic.min.js; path = Pod/Assets/Highlighter/languages/basic.min.js; sourceTree = ""; }; - 8FBC6A834B0D0C963B2232C187F2A030 /* SwipeCellKit.tgz */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeCellKit.tgz; path = docs/docsets/SwipeCellKit.tgz; sourceTree = ""; }; + 8F9D08975CE8CF47F4144247D80DD075 /* atom-one-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atom-one-dark.min.css"; path = "Pod/Assets/styles/atom-one-dark.min.css"; sourceTree = ""; }; + 8FAA7007746A9A080B3041E92CFCEF85 /* basic.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = basic.min.js; path = Pod/Assets/Highlighter/languages/basic.min.js; sourceTree = ""; }; + 8FBC6A834B0D0C963B2232C187F2A030 /* SwipeCellKit.tgz */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file; name = SwipeCellKit.tgz; path = docs/docsets/SwipeCellKit.tgz; sourceTree = ""; }; 8FC5B4FC3B09C0CEC8CFAA4A9E864E3C /* V3MarkNotificationsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3MarkNotificationsRequest.swift; path = GitHubAPI/V3MarkNotificationsRequest.swift; sourceTree = ""; }; 8FD07AC39336339279F688C843D2C185 /* V3Issue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3Issue.swift; path = GitHubAPI/V3Issue.swift; sourceTree = ""; }; - 8FD2D7731848DDA4B753CEE25277A19E /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FBSnapshotTestCase.framework; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 8FD2D7731848DDA4B753CEE25277A19E /* FBSnapshotTestCase.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FBSnapshotTestCase.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 8FEBC4B78DCD4466B22E424237BBE680 /* FLEXFileBrowserSearchOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXFileBrowserSearchOperation.h; path = Classes/GlobalStateExplorers/FLEXFileBrowserSearchOperation.h; sourceTree = ""; }; 90081AF59E3FC3F5A74846AE42BC760B /* Pods-FreetimeWatch.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeWatch.debug.xcconfig"; sourceTree = ""; }; - 900F5CF2934391DBA55C7F3CAB6B4D6E /* arta.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = arta.min.css; path = Pod/Assets/styles/arta.min.css; sourceTree = ""; }; - 900F7D4AFB70160F1B70D209166818F5 /* subunit.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = subunit.min.js; path = Pod/Assets/Highlighter/languages/subunit.min.js; sourceTree = ""; }; - 90210ABC98DDEDE3195629EB51D8DFF3 /* vs2015.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = vs2015.min.css; path = Pod/Assets/styles/vs2015.min.css; sourceTree = ""; }; - 9039B7941FF197953000AA96D59666C3 /* step21.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = step21.min.js; path = Pod/Assets/Highlighter/languages/step21.min.js; sourceTree = ""; }; + 900F5CF2934391DBA55C7F3CAB6B4D6E /* arta.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = arta.min.css; path = Pod/Assets/styles/arta.min.css; sourceTree = ""; }; + 900F7D4AFB70160F1B70D209166818F5 /* subunit.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = subunit.min.js; path = Pod/Assets/Highlighter/languages/subunit.min.js; sourceTree = ""; }; + 90210ABC98DDEDE3195629EB51D8DFF3 /* vs2015.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = vs2015.min.css; path = Pod/Assets/styles/vs2015.min.css; sourceTree = ""; }; + 9039B7941FF197953000AA96D59666C3 /* step21.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = step21.min.js; path = Pod/Assets/Highlighter/languages/step21.min.js; sourceTree = ""; }; 908F392974A4780E59FC1F88CD9C937C /* TUSafariActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = TUSafariActivity.m; path = Pod/Classes/TUSafariActivity.m; sourceTree = ""; }; - 90A63B0063B7B6840D39F92CD26419E6 /* ini.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ini.min.js; path = Pod/Assets/Highlighter/languages/ini.min.js; sourceTree = ""; }; + 90A63B0063B7B6840D39F92CD26419E6 /* ini.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ini.min.js; path = Pod/Assets/Highlighter/languages/ini.min.js; sourceTree = ""; }; 90BEEC3D7B55FC1B85712EF2714597A3 /* IGListReloadDataUpdater.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListReloadDataUpdater.h; path = Source/IGListReloadDataUpdater.h; sourceTree = ""; }; - 91058FE412AB687F73779AE49EE31625 /* kimbie.light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = kimbie.light.min.css; path = Pod/Assets/styles/kimbie.light.min.css; sourceTree = ""; }; + 91058FE412AB687F73779AE49EE31625 /* kimbie.light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = kimbie.light.min.css; path = Pod/Assets/styles/kimbie.light.min.css; sourceTree = ""; }; 91384D8BA49D35A3D98175BF80759BAA /* Pods-FreetimeTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FreetimeTests-resources.sh"; sourceTree = ""; }; 9138E6DC283E9385B598763739D70A05 /* IGListAdapter+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListAdapter+DebugDescription.h"; path = "Source/Internal/IGListAdapter+DebugDescription.h"; sourceTree = ""; }; 9143A9EB590627E6B0EB0B0D1C5A7CCE /* V3VerifyPersonalAccessTokenRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3VerifyPersonalAccessTokenRequest.swift; path = GitHubAPI/V3VerifyPersonalAccessTokenRequest.swift; sourceTree = ""; }; 916894F50B121D757F8370896BDA2D9F /* ClientError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClientError.swift; path = GitHubAPI/ClientError.swift; sourceTree = ""; }; - 917F6499BE83CDB2B141AFB87DAD88FA /* scanners.re */ = {isa = PBXFileReference; includeInIndex = 1; name = scanners.re; path = Source/cmark_gfm/scanners.re; sourceTree = ""; }; + 917F6499BE83CDB2B141AFB87DAD88FA /* scanners.re */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = scanners.re; path = Source/cmark_gfm/scanners.re; sourceTree = ""; }; 922094BCF97F84A60B7AAF826665D437 /* UICollectionView+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+DebugDescription.h"; path = "Source/Internal/UICollectionView+DebugDescription.h"; sourceTree = ""; }; 924072CFB38AFA14F34997297EC70A25 /* Extensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Extensions.swift; path = Source/Extensions.swift; sourceTree = ""; }; - 9267D994CD9308C1286A02436A219B38 /* dts.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = dts.min.js; path = Pod/Assets/Highlighter/languages/dts.min.js; sourceTree = ""; }; + 9267D994CD9308C1286A02436A219B38 /* dts.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = dts.min.js; path = Pod/Assets/Highlighter/languages/dts.min.js; sourceTree = ""; }; 92DF08DE088EA2032248E18617816127 /* Squawk-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Squawk-umbrella.h"; sourceTree = ""; }; - 9308EC4D0B3E3B127AEF5DDEA202E24C /* vbnet.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = vbnet.min.js; path = Pod/Assets/Highlighter/languages/vbnet.min.js; sourceTree = ""; }; + 9308EC4D0B3E3B127AEF5DDEA202E24C /* vbnet.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = vbnet.min.js; path = Pod/Assets/Highlighter/languages/vbnet.min.js; sourceTree = ""; }; 9339D0A9B4C90FF97C8A2D6613BFCA76 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 9351DFBBD538F720FDA12E4EFC8B0E28 /* irpf90.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = irpf90.min.js; path = Pod/Assets/Highlighter/languages/irpf90.min.js; sourceTree = ""; }; + 9351DFBBD538F720FDA12E4EFC8B0E28 /* irpf90.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = irpf90.min.js; path = Pod/Assets/Highlighter/languages/irpf90.min.js; sourceTree = ""; }; 9368A4553BA1679814CD5C833ECD9D03 /* V3SetRepositoryLabelsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3SetRepositoryLabelsRequest.swift; path = GitHubAPI/V3SetRepositoryLabelsRequest.swift; sourceTree = ""; }; 938BAC313C1FF487D12050ABC0F37298 /* GitHubSession-watchOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GitHubSession-watchOS-dummy.m"; path = "../GitHubSession-watchOS/GitHubSession-watchOS-dummy.m"; sourceTree = ""; }; - 93909AFD978EACAF0F075CAA3C5F45F4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; path = LICENSE; sourceTree = ""; }; - 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 93909AFD978EACAF0F075CAA3C5F45F4 /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 93D8143162AD2EC792F176205611364D /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/UIImage+MultiFormat.h"; sourceTree = ""; }; - 94373F9C93814A3C50C9C146EFDACC5D /* far.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = far.min.css; path = Pod/Assets/styles/far.min.css; sourceTree = ""; }; + 94373F9C93814A3C50C9C146EFDACC5D /* far.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = far.min.css; path = Pod/Assets/styles/far.min.css; sourceTree = ""; }; 94B3DE19CFADE957F49F1B3A4FFEEB4A /* SquawkItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SquawkItem.swift; path = Source/SquawkItem.swift; sourceTree = ""; }; - 94DDE1F2C3C103BEF44B14324F5AD270 /* SwipeExpansionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeExpansionStyle.html; path = docs/Structs/SwipeExpansionStyle.html; sourceTree = ""; }; + 94DDE1F2C3C103BEF44B14324F5AD270 /* SwipeExpansionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeExpansionStyle.html; path = docs/Structs/SwipeExpansionStyle.html; sourceTree = ""; }; 94FF714CC77A86AF206D6A6BF3A744BD /* UIImage+Snapshot.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Snapshot.m"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.m"; sourceTree = ""; }; 9553E09A5CBE711746BDBBB4CA9343FF /* ConstraintLayoutSupport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupport.swift; path = Source/ConstraintLayoutSupport.swift; sourceTree = ""; }; 95CD7EB77E5D324C197A805BFCEB799F /* DictionaryString+NSAttributedStringKey.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DictionaryString+NSAttributedStringKey.swift"; path = "MessageViewController/DictionaryString+NSAttributedStringKey.swift"; sourceTree = ""; }; 961C7DAD9C2AA5ABBA11B9250FB6E46F /* houdini.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = houdini.h; path = Source/cmark_gfm/include/houdini.h; sourceTree = ""; }; 962820F0CAED1D323F5984D30E224E53 /* GraphQLOperation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLOperation.swift; path = Sources/Apollo/GraphQLOperation.swift; sourceTree = ""; }; 9630AC5DD2769CD8EF207D26DFBBC053 /* StyledTextKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = StyledTextKit.xcconfig; sourceTree = ""; }; - 96889AF8D3FA4ACD7496C4854A900D0B /* sql.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = sql.min.js; path = Pod/Assets/Highlighter/languages/sql.min.js; sourceTree = ""; }; - 969007E6554B7F11FF23B660A14BEABE /* monokai-sublime.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "monokai-sublime.min.css"; path = "Pod/Assets/styles/monokai-sublime.min.css"; sourceTree = ""; }; + 96889AF8D3FA4ACD7496C4854A900D0B /* sql.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = sql.min.js; path = Pod/Assets/Highlighter/languages/sql.min.js; sourceTree = ""; }; + 969007E6554B7F11FF23B660A14BEABE /* monokai-sublime.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "monokai-sublime.min.css"; path = "Pod/Assets/styles/monokai-sublime.min.css"; sourceTree = ""; }; 96AECF6B2E9914CF91A6E8360122C677 /* ConstraintPriorityTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintPriorityTarget.swift; path = Source/ConstraintPriorityTarget.swift; sourceTree = ""; }; - 96F70554027C32283B9FFD6A00167E58 /* FillOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; name = FillOptions.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions.html; sourceTree = ""; }; + 96F70554027C32283B9FFD6A00167E58 /* FillOptions.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = FillOptions.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/FillOptions.html; sourceTree = ""; }; 97255569BFC44C35A5D69B680F138524 /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/SDImageCacheConfig.m; sourceTree = ""; }; - 9730271C5A18373CC5968E8D7CA858D3 /* tomorrow-night-eighties.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "tomorrow-night-eighties.min.css"; path = "Pod/Assets/styles/tomorrow-night-eighties.min.css"; sourceTree = ""; }; + 9730271C5A18373CC5968E8D7CA858D3 /* tomorrow-night-eighties.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "tomorrow-night-eighties.min.css"; path = "Pod/Assets/styles/tomorrow-night-eighties.min.css"; sourceTree = ""; }; 97394C4F7C194379024D21873A675AB3 /* String+NSRange.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+NSRange.swift"; path = "StringHelpers/String+NSRange.swift"; sourceTree = ""; }; 9751AD0E5A439AC1658DF3CEB9561601 /* IGListSingleSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSingleSectionController.h; path = Source/IGListSingleSectionController.h; sourceTree = ""; }; 977A64C83C2AB0DC714FDEF52868A59F /* FLEX.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLEX.xcconfig; sourceTree = ""; }; - 979C6DB251FD073F3C61058D2470DCE9 /* CompletionAnimation.html */ = {isa = PBXFileReference; includeInIndex = 1; name = CompletionAnimation.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/CompletionAnimation.html; sourceTree = ""; }; + 979C6DB251FD073F3C61058D2470DCE9 /* CompletionAnimation.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = CompletionAnimation.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/CompletionAnimation.html; sourceTree = ""; }; 97A4DEDE0509F14FF7B20B0431CC3C40 /* ConstraintLayoutSupportDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutSupportDSL.swift; path = Source/ConstraintLayoutSupportDSL.swift; sourceTree = ""; }; 97BBF686EAD0D480A9097222CFE879C8 /* Font.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Font.swift; path = Source/Font.swift; sourceTree = ""; }; 97CACB84D22F6B876767816BFF2C9876 /* FLEXMethodCallingViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMethodCallingViewController.h; path = Classes/Editing/FLEXMethodCallingViewController.h; sourceTree = ""; }; 982E2E9C29674E3EA99CA92EF8FC601F /* JSONResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONResponse.swift; path = GitHubAPI/JSONResponse.swift; sourceTree = ""; }; - 982FE127BDFFD6E9B4C5D0AE965F99FC /* clojure-repl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "clojure-repl.min.js"; path = "Pod/Assets/Highlighter/languages/clojure-repl.min.js"; sourceTree = ""; }; - 98387BC99264C097312C9A81A09AD4D2 /* erlang-repl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = "erlang-repl.min.js"; path = "Pod/Assets/Highlighter/languages/erlang-repl.min.js"; sourceTree = ""; }; - 98B45597163D2181F16A7C89C2C8F435 /* school-book.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "school-book.min.css"; path = "Pod/Assets/styles/school-book.min.css"; sourceTree = ""; }; - 98C054407C55672349D905C6AC2D223B /* coq.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = coq.min.js; path = Pod/Assets/Highlighter/languages/coq.min.js; sourceTree = ""; }; - 992DFAA2A65ED3EAC250D1204E88F598 /* 1c.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = 1c.min.js; path = Pod/Assets/Highlighter/languages/1c.min.js; sourceTree = ""; }; + 982FE127BDFFD6E9B4C5D0AE965F99FC /* clojure-repl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = "clojure-repl.min.js"; path = "Pod/Assets/Highlighter/languages/clojure-repl.min.js"; sourceTree = ""; }; + 98387BC99264C097312C9A81A09AD4D2 /* erlang-repl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = "erlang-repl.min.js"; path = "Pod/Assets/Highlighter/languages/erlang-repl.min.js"; sourceTree = ""; }; + 98B45597163D2181F16A7C89C2C8F435 /* school-book.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "school-book.min.css"; path = "Pod/Assets/styles/school-book.min.css"; sourceTree = ""; }; + 98C054407C55672349D905C6AC2D223B /* coq.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = coq.min.js; path = Pod/Assets/Highlighter/languages/coq.min.js; sourceTree = ""; }; + 992DFAA2A65ED3EAC250D1204E88F598 /* 1c.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = 1c.min.js; path = Pod/Assets/Highlighter/languages/1c.min.js; sourceTree = ""; }; 99578FA12789009631080CEB31432AC6 /* V3LockIssueRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3LockIssueRequest.swift; path = GitHubAPI/V3LockIssueRequest.swift; sourceTree = ""; }; 997E272F526584282A622C19D7DA8872 /* IGListSectionMap+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListSectionMap+DebugDescription.h"; path = "Source/Internal/IGListSectionMap+DebugDescription.h"; sourceTree = ""; }; 998E384B14CFF85519523C95734D5BBC /* ClippedContainerViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClippedContainerViewController.swift; path = ContextMenu/ClippedContainerViewController.swift; sourceTree = ""; }; 9A0AEC54B1620F5EAA84AC26C125D7A1 /* FLEXArgumentInputFontsPickerView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputFontsPickerView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontsPickerView.m; sourceTree = ""; }; 9A11D9FAB3FE1390668B5781AA90FC1C /* V3StatusCode205.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3StatusCode205.swift; path = GitHubAPI/V3StatusCode205.swift; sourceTree = ""; }; 9A2B3E0C19A3644381AC2CBAE2A192F5 /* V3User.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3User.swift; path = GitHubAPI/V3User.swift; sourceTree = ""; }; - 9A2F486E68D906C1F7A7464709D03306 /* codepen-embed.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "codepen-embed.min.css"; path = "Pod/Assets/styles/codepen-embed.min.css"; sourceTree = ""; }; - 9A32078964C821E0C3CC00D832ACC3FE /* TUSafariActivity.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = TUSafariActivity.framework; path = TUSafariActivity.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 9A2F486E68D906C1F7A7464709D03306 /* codepen-embed.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "codepen-embed.min.css"; path = "Pod/Assets/styles/codepen-embed.min.css"; sourceTree = ""; }; + 9A32078964C821E0C3CC00D832ACC3FE /* TUSafariActivity.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TUSafariActivity.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 9A63FD0825FA1F6DCA91F224B747608A /* HTMLString.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = HTMLString.xcconfig; sourceTree = ""; }; 9A97810327A819B86D0711C964D84232 /* ContextMenu+Item.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ContextMenu+Item.swift"; path = "ContextMenu/ContextMenu+Item.swift"; sourceTree = ""; }; 9AD3C32B8175F7C7ABFDCB4908AD90B1 /* SwipeActionsView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeActionsView.swift; path = Source/SwipeActionsView.swift; sourceTree = ""; }; - 9AD7B213569FA773731BD8D09ABACAFD /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = vi.lproj; path = Pod/Assets/vi.lproj; sourceTree = ""; }; + 9AD7B213569FA773731BD8D09ABACAFD /* vi.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = vi.lproj; path = Pod/Assets/vi.lproj; sourceTree = ""; }; 9AE378B537404346BA0ECC3E00872355 /* SwitchAccountShortcutRoute.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwitchAccountShortcutRoute.swift; path = GitHawkRoutes/SwitchAccountShortcutRoute.swift; sourceTree = ""; }; 9B208B0C8D14BEF99ADCDFDC56FEC9B9 /* NYTPhotoViewer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NYTPhotoViewer-prefix.pch"; sourceTree = ""; }; - 9BBA7B861EA35A8C4ABAF194014B6A96 /* latex.c */ = {isa = PBXFileReference; includeInIndex = 1; name = latex.c; path = Source/cmark_gfm/latex.c; sourceTree = ""; }; + 9BBA7B861EA35A8C4ABAF194014B6A96 /* latex.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = latex.c; path = Source/cmark_gfm/latex.c; sourceTree = ""; }; 9BBF7B9EBB9CBE78BEA5D1EA323B3D97 /* GitHawkRoutes.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GitHawkRoutes.xcconfig; sourceTree = ""; }; 9BCAE887E87A715C145833014B3D3597 /* cmark-gfm-swift-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "cmark-gfm-swift-umbrella.h"; sourceTree = ""; }; - 9C60C54466DBA335522D002549309C5C /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Classes.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes.html; sourceTree = ""; }; - 9C640CE8AF36F0FF84DFBFD72C69A9F1 /* atelier-estuary-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-estuary-dark.min.css"; path = "Pod/Assets/styles/atelier-estuary-dark.min.css"; sourceTree = ""; }; + 9C60C54466DBA335522D002549309C5C /* Classes.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Classes.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes.html; sourceTree = ""; }; + 9C640CE8AF36F0FF84DFBFD72C69A9F1 /* atelier-estuary-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-estuary-dark.min.css"; path = "Pod/Assets/styles/atelier-estuary-dark.min.css"; sourceTree = ""; }; 9C87E0F8EAA8F12C828B2E3AC00B52E4 /* FLEXWebViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXWebViewController.m; path = Classes/GlobalStateExplorers/FLEXWebViewController.m; sourceTree = ""; }; 9CBE62B73BAB16CDEF18363F2E167078 /* NSAttributedString+ReplaceRange.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSAttributedString+ReplaceRange.swift"; path = "MessageViewController/NSAttributedString+ReplaceRange.swift"; sourceTree = ""; }; 9CD09855B0DC72CA23915A790376C8DC /* FBSnapshotTestCase.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCase.h; path = FBSnapshotTestCase/FBSnapshotTestCase.h; sourceTree = ""; }; 9D0DBE2376767B736901BA4C8D371030 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; 9D11D6CA0234713634B4946467303CDE /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 9D55B6171804C80EFADADC94B63AAEE3 /* FMDB-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FMDB-prefix.pch"; sourceTree = ""; }; - 9D5FBF1E97A3F61929B58B3E5048B017 /* cmark_ctype.c */ = {isa = PBXFileReference; includeInIndex = 1; name = cmark_ctype.c; path = Source/cmark_gfm/cmark_ctype.c; sourceTree = ""; }; + 9D5FBF1E97A3F61929B58B3E5048B017 /* cmark_ctype.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = cmark_ctype.c; path = Source/cmark_gfm/cmark_ctype.c; sourceTree = ""; }; 9DF001720B6BC7715DA81B6FED161286 /* IGListKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "IGListKit-prefix.pch"; sourceTree = ""; }; 9E61B806E9B0D0978FCE5AD6DD9608B1 /* FLEXTableContentCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableContentCell.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.h; sourceTree = ""; }; 9E75BA379036842AF24341F86C921E2C /* NYTPhoto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhoto.h; path = NYTPhotoViewer/Protocols/NYTPhoto.h; sourceTree = ""; }; @@ -2704,10 +2706,10 @@ 9F438B99CD4B9952B047D3662E358D9C /* cmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = cmark.h; path = Source/cmark_gfm/include/cmark.h; sourceTree = ""; }; 9F52AB9B5AB284E2E629CE8FA7A6FFED /* FLEXTableContentCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentCell.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentCell.m; sourceTree = ""; }; 9F6412BF87F7A2871A77C8FAC4868F99 /* FLEXToolbarItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXToolbarItem.h; path = Classes/Toolbar/FLEXToolbarItem.h; sourceTree = ""; }; - 9F6B72FF2F95A514A8FC522ECCE4FFB4 /* atelier-cave-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-cave-light.min.css"; path = "Pod/Assets/styles/atelier-cave-light.min.css"; sourceTree = ""; }; + 9F6B72FF2F95A514A8FC522ECCE4FFB4 /* atelier-cave-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-cave-light.min.css"; path = "Pod/Assets/styles/atelier-cave-light.min.css"; sourceTree = ""; }; 9FA32C331A7120863AB394F7776AD258 /* FLEXObjectExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXObjectExplorerViewController.h; path = Classes/ObjectExplorers/FLEXObjectExplorerViewController.h; sourceTree = ""; }; - 9FF78AE42F7326BEB94D23A9642299C3 /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = nl.lproj; path = Pod/Assets/nl.lproj; sourceTree = ""; }; - A07D1B927909D7E151E84A1FCF99E1F8 /* smali.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = smali.min.js; path = Pod/Assets/Highlighter/languages/smali.min.js; sourceTree = ""; }; + 9FF78AE42F7326BEB94D23A9642299C3 /* nl.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = nl.lproj; path = Pod/Assets/nl.lproj; sourceTree = ""; }; + A07D1B927909D7E151E84A1FCF99E1F8 /* smali.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = smali.min.js; path = Pod/Assets/Highlighter/languages/smali.min.js; sourceTree = ""; }; A0D5C41DA71B5457971FF85E573CDFE4 /* V3ViewerIsCollaboratorRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3ViewerIsCollaboratorRequest.swift; path = GitHubAPI/V3ViewerIsCollaboratorRequest.swift; sourceTree = ""; }; A0E1DEA6F44F18D13351FF28E213DF3D /* IGListMoveIndex.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListMoveIndex.m; path = Source/Common/IGListMoveIndex.m; sourceTree = ""; }; A15F0A9AE86F8B0F2CA3B2BC08465DAC /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/SDWebImageDownloader.m; sourceTree = ""; }; @@ -2716,67 +2718,67 @@ A1DE9B73101F9F19728211AADF8514D4 /* Alamofire-watchOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Alamofire-watchOS-prefix.pch"; path = "../Alamofire-watchOS/Alamofire-watchOS-prefix.pch"; sourceTree = ""; }; A1F65BE1AEA7DAD6A3D6670C6554F7E8 /* NSString+HTMLString.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "NSString+HTMLString.swift"; path = "Sources/HTMLString/NSString+HTMLString.swift"; sourceTree = ""; }; A223AE44AC2DF2E3A42DAEA65DDC470A /* FLEXArgumentInputStringView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStringView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStringView.m; sourceTree = ""; }; - A223F0DC26F984FCF471ED5622CC1D22 /* kotlin.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = kotlin.min.js; path = Pod/Assets/Highlighter/languages/kotlin.min.js; sourceTree = ""; }; + A223F0DC26F984FCF471ED5622CC1D22 /* kotlin.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = kotlin.min.js; path = Pod/Assets/Highlighter/languages/kotlin.min.js; sourceTree = ""; }; A241F3BE8FDE8034BCA75B5D86E8EF43 /* TwitterPagerTabStripViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwitterPagerTabStripViewController.swift; path = Sources/TwitterPagerTabStripViewController.swift; sourceTree = ""; }; A247A8C94454874823AE265D0507899A /* gh.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = gh.png; path = docs/img/gh.png; sourceTree = ""; }; - A271ECC9FC7DD6F064E13602FC0FBE43 /* inlines.c */ = {isa = PBXFileReference; includeInIndex = 1; name = inlines.c; path = Source/cmark_gfm/inlines.c; sourceTree = ""; }; - A272406E240F38926C0D19E7B1E59A75 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = "Alamofire-watchOS.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; - A27CFB8D3E3820E17428BCB4B67619F4 /* qml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = qml.min.js; path = Pod/Assets/Highlighter/languages/qml.min.js; sourceTree = ""; }; - A2AA8A88FC24A8DF81744526EBAD0BF4 /* AlamofireNetworkActivityIndicator.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AlamofireNetworkActivityIndicator.framework; path = AlamofireNetworkActivityIndicator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A271ECC9FC7DD6F064E13602FC0FBE43 /* inlines.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = inlines.c; path = Source/cmark_gfm/inlines.c; sourceTree = ""; }; + A272406E240F38926C0D19E7B1E59A75 /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A27CFB8D3E3820E17428BCB4B67619F4 /* qml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = qml.min.js; path = Pod/Assets/Highlighter/languages/qml.min.js; sourceTree = ""; }; + A2AA8A88FC24A8DF81744526EBAD0BF4 /* AlamofireNetworkActivityIndicator.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireNetworkActivityIndicator.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A2D15382255E9C41F24C45C16DE8D465 /* FLEXCookiesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXCookiesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXCookiesTableViewController.m; sourceTree = ""; }; A3392326AB4AC7068D4F1217BD6125B9 /* SwipeFeedback.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeFeedback.swift; path = Source/SwipeFeedback.swift; sourceTree = ""; }; A33D801FEE9A2BE2AC4E4813049D10D7 /* FLEXNetworkCurlLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkCurlLogger.h; path = Classes/Network/FLEXNetworkCurlLogger.h; sourceTree = ""; }; A3837634A5B82C6B65908FB4DCC7F77F /* ASTOperations.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ASTOperations.swift; path = Source/ASTOperations.swift; sourceTree = ""; }; A3AD188214006E58EC0814A984DBD030 /* ContextMenuPresenting.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextMenuPresenting.swift; path = ContextMenu/ContextMenuPresenting.swift; sourceTree = ""; }; - A3BA1D3DE7DF41F76376BFCBF08782A3 /* SwipeExpanding.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeExpanding.html; path = docs/Protocols/SwipeExpanding.html; sourceTree = ""; }; - A3EFF70ACD32DEBC0635C34057AC2E89 /* cs.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = cs.min.js; path = Pod/Assets/Highlighter/languages/cs.min.js; sourceTree = ""; }; - A44F96372F3446E4065D0AE7475041FB /* oxygene.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = oxygene.min.js; path = Pod/Assets/Highlighter/languages/oxygene.min.js; sourceTree = ""; }; + A3BA1D3DE7DF41F76376BFCBF08782A3 /* SwipeExpanding.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeExpanding.html; path = docs/Protocols/SwipeExpanding.html; sourceTree = ""; }; + A3EFF70ACD32DEBC0635C34057AC2E89 /* cs.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = cs.min.js; path = Pod/Assets/Highlighter/languages/cs.min.js; sourceTree = ""; }; + A44F96372F3446E4065D0AE7475041FB /* oxygene.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = oxygene.min.js; path = Pod/Assets/Highlighter/languages/oxygene.min.js; sourceTree = ""; }; A456EFE0E37A072DCFA74732653B2F33 /* Squawk.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Squawk.modulemap; sourceTree = ""; }; A4CAA184456C6E16540E8B1FCE9D7D6F /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = ""; }; A4D8908A45A5C2A9276B63BEB28C852C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; A50C028F366B6C698464299CF5AA0B82 /* SnapKit.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SnapKit.xcconfig; sourceTree = ""; }; A541FF6764B363C3945E5B6ACA05E87F /* NSNumber+IGListDiffable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSNumber+IGListDiffable.m"; path = "Source/Common/NSNumber+IGListDiffable.m"; sourceTree = ""; }; A544B07B7B41DC795DC3607F6F1B9F80 /* FABAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FABAttributes.h; path = iOS/Fabric.framework/Headers/FABAttributes.h; sourceTree = ""; }; - A58526694E78E78CBAE5128464924F42 /* pony.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = pony.min.js; path = Pod/Assets/Highlighter/languages/pony.min.js; sourceTree = ""; }; + A58526694E78E78CBAE5128464924F42 /* pony.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = pony.min.js; path = Pod/Assets/Highlighter/languages/pony.min.js; sourceTree = ""; }; A591082AE2BCEAE2D968148A5C60A549 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; A5A3EECAC419E2E6F2745C37F7AE0319 /* SwipeAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeAnimator.swift; path = Source/SwipeAnimator.swift; sourceTree = ""; }; A5C69308C69AEB2FE89071E2EDAB663A /* PagerTabStripViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PagerTabStripViewController.swift; path = Sources/PagerTabStripViewController.swift; sourceTree = ""; }; A6250BCF0C3638D30FD298AA2D20BF76 /* DateAgo-watchOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DateAgo-watchOS-umbrella.h"; path = "../DateAgo-watchOS/DateAgo-watchOS-umbrella.h"; sourceTree = ""; }; - A64453C3DB248A31F3DD38ABA1D0849F /* core-extensions.c */ = {isa = PBXFileReference; includeInIndex = 1; name = "core-extensions.c"; path = "Source/cmark_gfm/core-extensions.c"; sourceTree = ""; }; + A64453C3DB248A31F3DD38ABA1D0849F /* core-extensions.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = "core-extensions.c"; path = "Source/cmark_gfm/core-extensions.c"; sourceTree = ""; }; A64756025154936336EF4AC80B08A9A5 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = GitHubAPI/Response.swift; sourceTree = ""; }; A68279B601A11FD0912241DA7771FE83 /* FLEXIvarEditorViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXIvarEditorViewController.h; path = Classes/Editing/FLEXIvarEditorViewController.h; sourceTree = ""; }; A687BDB38B5C97C0AFC7B86FCAC1B767 /* IGListAdapterMoveDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterMoveDelegate.h; path = Source/IGListAdapterMoveDelegate.h; sourceTree = ""; }; A6901FFA43BFD47BD226A2644E757F41 /* ConstraintMakerRelatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerRelatable.swift; path = Source/ConstraintMakerRelatable.swift; sourceTree = ""; }; A6B26ED7331CABBDE8DDD843C6947324 /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; A6CF57B2E5C683C1EC152B2B193B487B /* FlatCache-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FlatCache-umbrella.h"; sourceTree = ""; }; - A6DE98C6124AB55926D4CC6676E74709 /* atelier-heath-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-heath-dark.min.css"; path = "Pod/Assets/styles/atelier-heath-dark.min.css"; sourceTree = ""; }; + A6DE98C6124AB55926D4CC6676E74709 /* atelier-heath-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-heath-dark.min.css"; path = "Pod/Assets/styles/atelier-heath-dark.min.css"; sourceTree = ""; }; A6F51B2B05621443CAAD99D640645E8E /* Apollo-iOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Apollo-iOS-umbrella.h"; sourceTree = ""; }; A70EB12542B3042BF888EA5E34411F06 /* FLEXSetExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSetExplorerViewController.h; path = Classes/ObjectExplorers/FLEXSetExplorerViewController.h; sourceTree = ""; }; A70EE6B1889996E8AC05801ADBB09743 /* FLEXNetworkTransactionDetailTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransactionDetailTableViewController.h; path = Classes/Network/FLEXNetworkTransactionDetailTableViewController.h; sourceTree = ""; }; A717E92FE55BF0CB28922A08ACFE2C8B /* Pods-FreetimeTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeTests.debug.xcconfig"; sourceTree = ""; }; A73026F162D7CF8FE894F8ADFCF28F41 /* FLEXDictionaryExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDictionaryExplorerViewController.h; path = Classes/ObjectExplorers/FLEXDictionaryExplorerViewController.h; sourceTree = ""; }; A7367E3EAFEF9BAE388F541092CD7A2B /* FLEXClassExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassExplorerViewController.m; path = Classes/ObjectExplorers/FLEXClassExplorerViewController.m; sourceTree = ""; }; - A737AF0588D4CD52A4C2741470C75405 /* hopscotch.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = hopscotch.min.css; path = Pod/Assets/styles/hopscotch.min.css; sourceTree = ""; }; + A737AF0588D4CD52A4C2741470C75405 /* hopscotch.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = hopscotch.min.css; path = Pod/Assets/styles/hopscotch.min.css; sourceTree = ""; }; A75C393AFE4A4B51B429F861D6D24DF7 /* NYTPhotoViewerCloseButtonXLandscape.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = NYTPhotoViewerCloseButtonXLandscape.png; path = NYTPhotoViewer/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonXLandscape.png; sourceTree = ""; }; - A765830671C5C9C9CC9ECEFD36E8C86B /* railscasts.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = railscasts.min.css; path = Pod/Assets/styles/railscasts.min.css; sourceTree = ""; }; + A765830671C5C9C9CC9ECEFD36E8C86B /* railscasts.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = railscasts.min.css; path = Pod/Assets/styles/railscasts.min.css; sourceTree = ""; }; A783DA95B703229ACDEFA84425AD491E /* V3NotificationSubject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3NotificationSubject.swift; path = GitHubAPI/V3NotificationSubject.swift; sourceTree = ""; }; A79B1DD8FE58D7A436D2EBC658359220 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; A7A8DB808439F7C12EAC1E97F7FBDD8C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../Apollo-watchOS/Info.plist"; sourceTree = ""; }; A807E2E24505A4D0AD8F11E103273528 /* Alamofire-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-iOS-prefix.pch"; sourceTree = ""; }; - A80C85B6282BD5E5DE0CBEABD34C7329 /* gruvbox-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "gruvbox-dark.min.css"; path = "Pod/Assets/styles/gruvbox-dark.min.css"; sourceTree = ""; }; + A80C85B6282BD5E5DE0CBEABD34C7329 /* gruvbox-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "gruvbox-dark.min.css"; path = "Pod/Assets/styles/gruvbox-dark.min.css"; sourceTree = ""; }; A839801105655AD38FFCF33534C727E6 /* Pods-FreetimeTests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-FreetimeTests-dummy.m"; sourceTree = ""; }; A8594E2CBD141FED9A78785881004248 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - A8EE34054E3B7B474BA78AE661C2BE55 /* entities.inc */ = {isa = PBXFileReference; includeInIndex = 1; name = entities.inc; path = Source/cmark_gfm/entities.inc; sourceTree = ""; }; - A9062D9E710FAD47F56AD41EC69C7AB6 /* Pods_FreetimeWatch_Extension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_FreetimeWatch_Extension.framework; path = "Pods-FreetimeWatch Extension.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + A8EE34054E3B7B474BA78AE661C2BE55 /* entities.inc */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.pascal; name = entities.inc; path = Source/cmark_gfm/entities.inc; sourceTree = ""; }; + A9062D9E710FAD47F56AD41EC69C7AB6 /* Pods_FreetimeWatch_Extension.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_FreetimeWatch_Extension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A909ABE5D0215078FCEE63702523D153 /* GitHubSession-watchOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "GitHubSession-watchOS.xcconfig"; path = "../GitHubSession-watchOS/GitHubSession-watchOS.xcconfig"; sourceTree = ""; }; A922DFEF2CDF133E866133DF559C651A /* NYTPhotoContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoContainer.h; path = NYTPhotoViewer/Protocols/NYTPhotoContainer.h; sourceTree = ""; }; - A94AB7CF70C86181A582FC132B81DB8A /* XLPagerTabStrip.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = XLPagerTabStrip.bundle; path = "XLPagerTabStrip-XLPagerTabStrip.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; - A97043921F09506651AF571B1B5951EC /* NYTPhotoViewer.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = NYTPhotoViewer.bundle; path = "NYTPhotoViewer-NYTPhotoViewer.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + A94AB7CF70C86181A582FC132B81DB8A /* XLPagerTabStrip.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = XLPagerTabStrip.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A97043921F09506651AF571B1B5951EC /* NYTPhotoViewer.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NYTPhotoViewer.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; A981022B680F762A9A2FFD995B8843B4 /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = ""; }; A991BCA9761653B1F097876A0EFF264A /* FLEXSystemLogMessage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXSystemLogMessage.m; path = Classes/GlobalStateExplorers/SystemLog/FLEXSystemLogMessage.m; sourceTree = ""; }; A9A4920A454164E5DC83C2389681679F /* IGListIndexPathResult.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListIndexPathResult.h; path = Source/Common/IGListIndexPathResult.h; sourceTree = ""; }; A9BAC718D5550F2784A804700F5BCA42 /* V3DeleteCommentRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3DeleteCommentRequest.swift; path = GitHubAPI/V3DeleteCommentRequest.swift; sourceTree = ""; }; - A9DAF72468CD85562401A70A190FF635 /* llvm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = llvm.min.js; path = Pod/Assets/Highlighter/languages/llvm.min.js; sourceTree = ""; }; + A9DAF72468CD85562401A70A190FF635 /* llvm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = llvm.min.js; path = Pod/Assets/Highlighter/languages/llvm.min.js; sourceTree = ""; }; AA64DFC3AF006D402841BA054DCDADDE /* IGListDisplayHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDisplayHandler.h; path = Source/Internal/IGListDisplayHandler.h; sourceTree = ""; }; AAA7B85E7DDE1FE1E02C3724A011AC8D /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; AAC8F9A6258AA5F954460F059EC5A4E9 /* FLEXArgumentInputStructView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputStructView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputStructView.m; sourceTree = ""; }; @@ -2785,68 +2787,68 @@ AB38A4A97C7B0966F31471D06FC667BC /* FLEXWindow.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXWindow.h; path = Classes/ExplorerInterface/FLEXWindow.h; sourceTree = ""; }; AB648647479A23F9F5D4121802102FD9 /* IGListReloadIndexPath.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListReloadIndexPath.m; path = Source/Internal/IGListReloadIndexPath.m; sourceTree = ""; }; AB6615B2C69AF5F8CA9D940562743AC8 /* NSImage+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+WebCache.h"; path = "SDWebImage/NSImage+WebCache.h"; sourceTree = ""; }; - AB6F0BF39100EB21303C2EF1F5715658 /* ExpansionFulfillmentStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = ExpansionFulfillmentStyle.html; path = docs/Enums/ExpansionFulfillmentStyle.html; sourceTree = ""; }; + AB6F0BF39100EB21303C2EF1F5715658 /* ExpansionFulfillmentStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ExpansionFulfillmentStyle.html; path = docs/Enums/ExpansionFulfillmentStyle.html; sourceTree = ""; }; AB9454769729518FE75D0DDF52AD3D75 /* FLEXViewControllerExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXViewControllerExplorerViewController.m; path = Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.m; sourceTree = ""; }; ABD543A2F24708A592FFBB4CEC941EA0 /* FLEXViewExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXViewExplorerViewController.m; path = Classes/ObjectExplorers/FLEXViewExplorerViewController.m; sourceTree = ""; }; ABE4E0C76D7E2CDEF1105AA979F4BF23 /* FLEXClassesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXClassesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXClassesTableViewController.m; sourceTree = ""; }; - AC038B4F2F722FBC066287D00BA2E769 /* atelier-plateau-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-plateau-light.min.css"; path = "Pod/Assets/styles/atelier-plateau-light.min.css"; sourceTree = ""; }; + AC038B4F2F722FBC066287D00BA2E769 /* atelier-plateau-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-plateau-light.min.css"; path = "Pod/Assets/styles/atelier-plateau-light.min.css"; sourceTree = ""; }; AC11BB37DED63DDB7813423CCBB88DD4 /* NYTPhotoTransitionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoTransitionController.h; path = NYTPhotoViewer/NYTPhotoTransitionController.h; sourceTree = ""; }; - AC14AFCA05EC44468D674AD1A68618D2 /* gherkin.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = gherkin.min.js; path = Pod/Assets/Highlighter/languages/gherkin.min.js; sourceTree = ""; }; + AC14AFCA05EC44468D674AD1A68618D2 /* gherkin.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = gherkin.min.js; path = Pod/Assets/Highlighter/languages/gherkin.min.js; sourceTree = ""; }; AC4C221FED212C5B7DAD73DC394962B9 /* checkbox.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = checkbox.h; path = Source/cmark_gfm/include/checkbox.h; sourceTree = ""; }; - AC85BA484FA7904730AD69256DF6531D /* makefile.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = makefile.min.js; path = Pod/Assets/Highlighter/languages/makefile.min.js; sourceTree = ""; }; + AC85BA484FA7904730AD69256DF6531D /* makefile.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = makefile.min.js; path = Pod/Assets/Highlighter/languages/makefile.min.js; sourceTree = ""; }; ACA8002CBE7258ED59745DB4BDB44FAB /* FLAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImage.m; path = FLAnimatedImage/FLAnimatedImage.m; sourceTree = ""; }; - ACD90DF3709624FD24972E8E46C056B4 /* shell.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = shell.min.js; path = Pod/Assets/Highlighter/languages/shell.min.js; sourceTree = ""; }; - AD8038D30D98139C12A8C4574C15DC72 /* atelier-lakeside-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-lakeside-light.min.css"; path = "Pod/Assets/styles/atelier-lakeside-light.min.css"; sourceTree = ""; }; - AD976F04A41508614A9426893E8E478C /* tomorrow.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = tomorrow.min.css; path = Pod/Assets/styles/tomorrow.min.css; sourceTree = ""; }; + ACD90DF3709624FD24972E8E46C056B4 /* shell.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = shell.min.js; path = Pod/Assets/Highlighter/languages/shell.min.js; sourceTree = ""; }; + AD8038D30D98139C12A8C4574C15DC72 /* atelier-lakeside-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-lakeside-light.min.css"; path = "Pod/Assets/styles/atelier-lakeside-light.min.css"; sourceTree = ""; }; + AD976F04A41508614A9426893E8E478C /* tomorrow.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = tomorrow.min.css; path = Pod/Assets/styles/tomorrow.min.css; sourceTree = ""; }; AE5AE8F4F38010678DCAAF6E2F6CA355 /* GitHawkRoutes-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GitHawkRoutes-prefix.pch"; sourceTree = ""; }; - AE97DED6B9C8BDC20C2CE3C38404A3B1 /* perl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = perl.min.js; path = Pod/Assets/Highlighter/languages/perl.min.js; sourceTree = ""; }; + AE97DED6B9C8BDC20C2CE3C38404A3B1 /* perl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = perl.min.js; path = Pod/Assets/Highlighter/languages/perl.min.js; sourceTree = ""; }; AEDC9892DBE7D3A296A4ED02FC4DE587 /* UIImage+Compare.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Compare.h"; path = "FBSnapshotTestCase/Categories/UIImage+Compare.h"; sourceTree = ""; }; AF76D212E7933CEC4FBF884BF2B5922F /* ApolloClient.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ApolloClient.swift; path = Sources/Apollo/ApolloClient.swift; sourceTree = ""; }; AF8E6384AD3EAF00DBBB01A42A50163A /* ButtonCell.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = ButtonCell.xib; path = Sources/ButtonCell.xib; sourceTree = ""; }; - AF9DF1FC59400A193CECCFAC80082F6E /* http.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = http.min.js; path = Pod/Assets/Highlighter/languages/http.min.js; sourceTree = ""; }; - AFB16CEC16D64CA9970AE7B04562562A /* idea.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = idea.min.css; path = Pod/Assets/styles/idea.min.css; sourceTree = ""; }; + AF9DF1FC59400A193CECCFAC80082F6E /* http.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = http.min.js; path = Pod/Assets/Highlighter/languages/http.min.js; sourceTree = ""; }; + AFB16CEC16D64CA9970AE7B04562562A /* idea.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = idea.min.css; path = Pod/Assets/styles/idea.min.css; sourceTree = ""; }; B056E764D191BED149C77A27F4070D11 /* Locking.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Locking.swift; path = Sources/Apollo/Locking.swift; sourceTree = ""; }; B08F3A383A0F523F8EC1DE0F08A03675 /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = GitHubAPI/Request.swift; sourceTree = ""; }; B0B645B98AB3FC9DA65B9EF5E8CDBB5C /* ImageAlertAction.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ImageAlertAction.modulemap; sourceTree = ""; }; - B0C6E15385DDDDB1658F7E40EF33C347 /* SwipeTableViewCellDelegate.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTableViewCellDelegate.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeTableViewCellDelegate.html; sourceTree = ""; }; + B0C6E15385DDDDB1658F7E40EF33C347 /* SwipeTableViewCellDelegate.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeTableViewCellDelegate.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeTableViewCellDelegate.html; sourceTree = ""; }; B0CF81EADCAD43EBF1E74377CF59885D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - B0E77CFBC6D339B9BFFBA5617A58BA13 /* ldif.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ldif.min.js; path = Pod/Assets/Highlighter/languages/ldif.min.js; sourceTree = ""; }; + B0E77CFBC6D339B9BFFBA5617A58BA13 /* ldif.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ldif.min.js; path = Pod/Assets/Highlighter/languages/ldif.min.js; sourceTree = ""; }; B0EA2A0B1DC060A568E04194C0A45133 /* FLEXDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXDatabaseManager.h; sourceTree = ""; }; B1109F8AD42FDA28DDBE8838B359308D /* FLEXTableColumnHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableColumnHeader.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableColumnHeader.h; sourceTree = ""; }; B119B17AB579543ED46F0F583B0A8E94 /* NYTPhotosViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotosViewController.m; path = NYTPhotoViewer/NYTPhotosViewController.m; sourceTree = ""; }; - B16A197AB8F396733748FA5B361BDD4D /* coffeescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = coffeescript.min.js; path = Pod/Assets/Highlighter/languages/coffeescript.min.js; sourceTree = ""; }; + B16A197AB8F396733748FA5B361BDD4D /* coffeescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = coffeescript.min.js; path = Pod/Assets/Highlighter/languages/coffeescript.min.js; sourceTree = ""; }; B1DA21D3331A3F84E534A4A9A3153809 /* PagerTabStripError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PagerTabStripError.swift; path = Sources/PagerTabStripError.swift; sourceTree = ""; }; B1E3628700C8B171A48155B6EDCB5AFE /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/SDWebImagePrefetcher.h; sourceTree = ""; }; - B2186DF784A905FCDCF7CE177934E680 /* strikethrough.c */ = {isa = PBXFileReference; includeInIndex = 1; name = strikethrough.c; path = Source/cmark_gfm/strikethrough.c; sourceTree = ""; }; + B2186DF784A905FCDCF7CE177934E680 /* strikethrough.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = strikethrough.c; path = Source/cmark_gfm/strikethrough.c; sourceTree = ""; }; B25EE23EF18FBE77C4A77372D054E01A /* V3SendPullRequestCommentRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3SendPullRequestCommentRequest.swift; path = GitHubAPI/V3SendPullRequestCommentRequest.swift; sourceTree = ""; }; B288724045533189025DCAA87ACB41D8 /* DataLoader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DataLoader.swift; path = Sources/Apollo/DataLoader.swift; sourceTree = ""; }; - B29B9DCE8C21C4A91F629EC9104E73C3 /* puppet.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = puppet.min.js; path = Pod/Assets/Highlighter/languages/puppet.min.js; sourceTree = ""; }; + B29B9DCE8C21C4A91F629EC9104E73C3 /* puppet.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = puppet.min.js; path = Pod/Assets/Highlighter/languages/puppet.min.js; sourceTree = ""; }; B2A90789E51DEC38B4FEE6C30538CBC1 /* Pods-Freetime-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-Freetime-acknowledgements.plist"; sourceTree = ""; }; B2AB7C4698D4AB8AC27B5AC9E44F9923 /* ConstraintConstantTarget.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConstantTarget.swift; path = Source/ConstraintConstantTarget.swift; sourceTree = ""; }; B2CAB138CE92767582865989B733AA44 /* CLSAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSAttributes.h; path = iOS/Crashlytics.framework/Headers/CLSAttributes.h; sourceTree = ""; }; B3142E66E8763CF74F8385535B8DCF3C /* GitHawkRoutes.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = GitHawkRoutes.modulemap; sourceTree = ""; }; - B318C36CE6FDBEC628E9751A26E40947 /* paraiso-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "paraiso-dark.min.css"; path = "Pod/Assets/styles/paraiso-dark.min.css"; sourceTree = ""; }; + B318C36CE6FDBEC628E9751A26E40947 /* paraiso-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "paraiso-dark.min.css"; path = "Pod/Assets/styles/paraiso-dark.min.css"; sourceTree = ""; }; B353E3346B4BAF29AB93C2AA02D84DD9 /* FLEXMultiColumnTableView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMultiColumnTableView.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.m; sourceTree = ""; }; - B37A8C1E705D36320F097EC53CC264FA /* Resources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = Resources.bundle; path = "DateAgo-watchOS-Resources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + B37A8C1E705D36320F097EC53CC264FA /* Resources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Resources.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; B3A6197FADE37C386C977D49546F795D /* ConstraintLayoutGuideDSL.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintLayoutGuideDSL.swift; path = Source/ConstraintLayoutGuideDSL.swift; sourceTree = ""; }; - B3C90B585261630A01C448E7B20F6CE4 /* asciidoc.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = asciidoc.min.js; path = Pod/Assets/Highlighter/languages/asciidoc.min.js; sourceTree = ""; }; + B3C90B585261630A01C448E7B20F6CE4 /* asciidoc.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = asciidoc.min.js; path = Pod/Assets/Highlighter/languages/asciidoc.min.js; sourceTree = ""; }; B4A17539F318819CFCF3560F905DB0CD /* SearchShortcutRoute.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SearchShortcutRoute.swift; path = GitHawkRoutes/SearchShortcutRoute.swift; sourceTree = ""; }; - B4AE243F6A2CBFA8172709EF2FD7C8E4 /* SwipeActionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionStyle.html; sourceTree = ""; }; + B4AE243F6A2CBFA8172709EF2FD7C8E4 /* SwipeActionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeActionStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Enums/SwipeActionStyle.html; sourceTree = ""; }; B4BA9203D1221D7D0CE71D763B07A1A9 /* IGListAdapterDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterDelegate.h; path = Source/IGListAdapterDelegate.h; sourceTree = ""; }; - B4D205D36D76A2D06F44D892B8B95B01 /* default.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = default.min.css; path = Pod/Assets/styles/default.min.css; sourceTree = ""; }; + B4D205D36D76A2D06F44D892B8B95B01 /* default.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = default.min.css; path = Pod/Assets/styles/default.min.css; sourceTree = ""; }; B4FFB32B53DFB49EE4A0993E27B8C491 /* FLEXKeyboardShortcutManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXKeyboardShortcutManager.m; path = Classes/Utility/FLEXKeyboardShortcutManager.m; sourceTree = ""; }; B5303C972170F63C50FF53571007433C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; B57B12F2695A9FA518C33D7AD621883C /* JSONSerializationFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = JSONSerializationFormat.swift; path = Sources/Apollo/JSONSerializationFormat.swift; sourceTree = ""; }; B59AE93752E95A5A59F84D4709E116ED /* ContextMenu+MenuStyle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ContextMenu+MenuStyle.swift"; path = "ContextMenu/ContextMenu+MenuStyle.swift"; sourceTree = ""; }; - B59EC51CF4214CADBAC136B4CA30A546 /* ruby.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ruby.min.js; path = Pod/Assets/Highlighter/languages/ruby.min.js; sourceTree = ""; }; + B59EC51CF4214CADBAC136B4CA30A546 /* ruby.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ruby.min.js; path = Pod/Assets/Highlighter/languages/ruby.min.js; sourceTree = ""; }; B5E9A445E09231B3067414FB414CB486 /* Pods-FreetimeWatch-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-FreetimeWatch-acknowledgements.markdown"; sourceTree = ""; }; B677CAB0DBF4922DB5F9DE714F06EC08 /* FLEXViewControllerExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXViewControllerExplorerViewController.h; path = Classes/ObjectExplorers/FLEXViewControllerExplorerViewController.h; sourceTree = ""; }; B68581395963BF50D4A64E3DB466F439 /* String+V3Links.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+V3Links.swift"; path = "GitHubAPI/String+V3Links.swift"; sourceTree = ""; }; - B69656507555F229CCC821940D0220B4 /* color-brewer.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "color-brewer.min.css"; path = "Pod/Assets/styles/color-brewer.min.css"; sourceTree = ""; }; + B69656507555F229CCC821940D0220B4 /* color-brewer.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "color-brewer.min.css"; path = "Pod/Assets/styles/color-brewer.min.css"; sourceTree = ""; }; B69A7673A34D57851B8BA49FF3D5773D /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; - B6C5E9621F52217C4DB867A3053A4715 /* apache.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = apache.min.js; path = Pod/Assets/Highlighter/languages/apache.min.js; sourceTree = ""; }; + B6C5E9621F52217C4DB867A3053A4715 /* apache.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = apache.min.js; path = Pod/Assets/Highlighter/languages/apache.min.js; sourceTree = ""; }; B6DDBD2B36873D0DC286B9DA17CB21E4 /* V3NotificationRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3NotificationRequest.swift; path = GitHubAPI/V3NotificationRequest.swift; sourceTree = ""; }; - B70C7F0F15A1C1CB72B66C591EAC4CA3 /* IGListBatchUpdateData.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IGListBatchUpdateData.mm; path = Source/Common/IGListBatchUpdateData.mm; sourceTree = ""; }; + B70C7F0F15A1C1CB72B66C591EAC4CA3 /* IGListBatchUpdateData.mm */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.objcpp; name = IGListBatchUpdateData.mm; path = Source/Common/IGListBatchUpdateData.mm; sourceTree = ""; }; B7285F94CD0C547C9B28F1251C807631 /* ImageAlertAction.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = ImageAlertAction.xcconfig; sourceTree = ""; }; B750D095DF913BBF511303306F02F3A6 /* IGListScrollDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListScrollDelegate.h; path = Source/IGListScrollDelegate.h; sourceTree = ""; }; B7566B8338B90451989182109A00FA59 /* FLEXWebViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXWebViewController.h; path = Classes/GlobalStateExplorers/FLEXWebViewController.h; sourceTree = ""; }; @@ -2855,7 +2857,7 @@ B7C43E256BD3B62B1276006204B4A32B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; B8109E10A1F96F20B08F71CF38485BDD /* CGRect+DominantCorner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGRect+DominantCorner.swift"; path = "ContextMenu/CGRect+DominantCorner.swift"; sourceTree = ""; }; B8527E40B7EBED965376A5A54BAEAB8C /* IGListCollectionContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCollectionContext.h; path = Source/IGListCollectionContext.h; sourceTree = ""; }; - B865F20459A1D41AB462739E8C1200FD /* SwipeActionTransitioningContext.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionTransitioningContext.html; path = docs/Structs/SwipeActionTransitioningContext.html; sourceTree = ""; }; + B865F20459A1D41AB462739E8C1200FD /* SwipeActionTransitioningContext.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeActionTransitioningContext.html; path = docs/Structs/SwipeActionTransitioningContext.html; sourceTree = ""; }; B87B0798744FC943896584F6290347F0 /* GitHubSession-iOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GitHubSession-iOS-prefix.pch"; sourceTree = ""; }; B8971883BB068AC816865C547C4FB189 /* Apollo-watchOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Apollo-watchOS-umbrella.h"; path = "../Apollo-watchOS/Apollo-watchOS-umbrella.h"; sourceTree = ""; }; B9105963538349A66975452310BFC443 /* ListSwiftDiffable+Boxed.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ListSwiftDiffable+Boxed.swift"; path = "Source/Swift/ListSwiftDiffable+Boxed.swift"; sourceTree = ""; }; @@ -2868,7 +2870,7 @@ BAA6577DA26CB1F09D1DFC6490321B93 /* html.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = html.h; path = Source/cmark_gfm/include/html.h; sourceTree = ""; }; BAE392D7C19737DE34C2112D335CADE6 /* IGListAdapterUpdater+DebugDescription.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "IGListAdapterUpdater+DebugDescription.h"; path = "Source/Internal/IGListAdapterUpdater+DebugDescription.h"; sourceTree = ""; }; BB119F0A5A07EDCCFC428F4C50AB1720 /* Alamofire-watchOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "Alamofire-watchOS.modulemap"; path = "../Alamofire-watchOS/Alamofire-watchOS.modulemap"; sourceTree = ""; }; - BB125126E33A606686EB7A641715E6B9 /* FlatCache.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = FlatCache.framework; path = FlatCache.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BB125126E33A606686EB7A641715E6B9 /* FlatCache.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FlatCache.framework; sourceTree = BUILT_PRODUCTS_DIR; }; BB15255986FB1A33D1FF1930F9264771 /* IGListAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListAdapter.m; path = Source/IGListAdapter.m; sourceTree = ""; }; BB4E97B891E79980DDEBF6AEF7B5D10F /* FLEXMultilineTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultilineTableViewCell.h; path = Classes/Utility/FLEXMultilineTableViewCell.h; sourceTree = ""; }; BBE297F8169F6FF7761D701A9310E234 /* ContextMenu.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = ContextMenu.modulemap; sourceTree = ""; }; @@ -2876,101 +2878,102 @@ BC078F9DFBBD7216BFA5FBAC230A2722 /* FLEXImageExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXImageExplorerViewController.m; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.m; sourceTree = ""; }; BC677B864AF0DD4EF94783271B11991C /* LRUCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUCache.swift; path = Source/LRUCache.swift; sourceTree = ""; }; BD0A0E6DAF6D86ABF1C8FCD9AF37BD4A /* FLEXManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXManager.m; path = Classes/Manager/FLEXManager.m; sourceTree = ""; }; - BD257108FDBE324542854D50F1E3DF79 /* ContextMenu.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = ContextMenu.framework; path = ContextMenu.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BD97FDFD1E097C8838588A21D870D4A4 /* stata.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = stata.min.js; path = Pod/Assets/Highlighter/languages/stata.min.js; sourceTree = ""; }; + BD257108FDBE324542854D50F1E3DF79 /* ContextMenu.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = ContextMenu.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BD97FDFD1E097C8838588A21D870D4A4 /* stata.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = stata.min.js; path = Pod/Assets/Highlighter/languages/stata.min.js; sourceTree = ""; }; + BDCEBE1421E2440200D31677 /* V3EditIssueTitleRequest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = V3EditIssueTitleRequest.swift; sourceTree = ""; }; BDF3AC53927C729E68B858F614597F7B /* Inline+TextElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Inline+TextElement.swift"; path = "Source/Inline+TextElement.swift"; sourceTree = ""; }; BE0C1C13E03FAE34DEC5FC97FB43C179 /* UIButton+BottomHeightOffset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+BottomHeightOffset.swift"; path = "MessageViewController/UIButton+BottomHeightOffset.swift"; sourceTree = ""; }; BE70DCAA665A271FBE87A4C314AD2EF0 /* FLEXDefaultsExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXDefaultsExplorerViewController.m; path = Classes/ObjectExplorers/FLEXDefaultsExplorerViewController.m; sourceTree = ""; }; - BE8E5F854A3A01B01B5431219D897179 /* fix.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = fix.min.js; path = Pod/Assets/Highlighter/languages/fix.min.js; sourceTree = ""; }; + BE8E5F854A3A01B01B5431219D897179 /* fix.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = fix.min.js; path = Pod/Assets/Highlighter/languages/fix.min.js; sourceTree = ""; }; BE927F0CED566F5AC50D3706B2596362 /* FLEXObjectExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXObjectExplorerViewController.m; path = Classes/ObjectExplorers/FLEXObjectExplorerViewController.m; sourceTree = ""; }; BF1630F149B3430482EBE7865F09CDAB /* IGListBindingSectionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListBindingSectionController.m; path = Source/IGListBindingSectionController.m; sourceTree = ""; }; BFAD21B478782421129DCF3DD92F1216 /* cmark-gfm-swift.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "cmark-gfm-swift.modulemap"; sourceTree = ""; }; BFB06A4CCCA2E3AA7F64EA80F3DE1FDD /* Pods-FreetimeWatch-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-FreetimeWatch-acknowledgements.plist"; sourceTree = ""; }; - BFE5785A551B991D613F5E61A4FA80CC /* docco.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = docco.min.css; path = Pod/Assets/styles/docco.min.css; sourceTree = ""; }; + BFE5785A551B991D613F5E61A4FA80CC /* docco.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = docco.min.css; path = Pod/Assets/styles/docco.min.css; sourceTree = ""; }; BFF327072B2744AE9ED223664A776574 /* FLAnimatedImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FLAnimatedImage.xcconfig; sourceTree = ""; }; - C04A249EAAA5C5A0D1A35757BF7FD7E9 /* autoit.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = autoit.min.js; path = Pod/Assets/Highlighter/languages/autoit.min.js; sourceTree = ""; }; + C04A249EAAA5C5A0D1A35757BF7FD7E9 /* autoit.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = autoit.min.js; path = Pod/Assets/Highlighter/languages/autoit.min.js; sourceTree = ""; }; C0EE416BABA73B2E206A85A27DCBA1F8 /* FLAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLAnimatedImage.h; path = FLAnimatedImage/FLAnimatedImage.h; sourceTree = ""; }; C0FBAB53218DC06B8E1B340ACB3BD19C /* FLEXRealmDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRealmDefines.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDefines.h; sourceTree = ""; }; C16DD7E540CE77F3E8F26B3821110015 /* Apollo-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Apollo-iOS-dummy.m"; sourceTree = ""; }; - C19848E66854256FC1ABCE5292843704 /* Target.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Target.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Target.html; sourceTree = ""; }; - C229A882C78DDDDA680D7F0B319D854F /* aspectj.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = aspectj.min.js; path = Pod/Assets/Highlighter/languages/aspectj.min.js; sourceTree = ""; }; + C19848E66854256FC1ABCE5292843704 /* Target.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Target.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle/Target.html; sourceTree = ""; }; + C229A882C78DDDDA680D7F0B319D854F /* aspectj.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = aspectj.min.js; path = Pod/Assets/Highlighter/languages/aspectj.min.js; sourceTree = ""; }; C26AC777F4B20C4387B993183873D7DF /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/SDWebImageOperation.h; sourceTree = ""; }; C2849AB61DE98F9290511AA7E469F623 /* Highlightr.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Highlightr.swift; path = Pod/Classes/Highlightr.swift; sourceTree = ""; }; C2D32B3EE217FAF07E176E28EB5F7793 /* FLEXNetworkObserver.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkObserver.h; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.h; sourceTree = ""; }; - C2EEEBD7D5E041B6C7C7ABA6CBDA7130 /* SwipeActionsOrientation.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionsOrientation.html; path = docs/Enums/SwipeActionsOrientation.html; sourceTree = ""; }; + C2EEEBD7D5E041B6C7C7ABA6CBDA7130 /* SwipeActionsOrientation.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeActionsOrientation.html; path = docs/Enums/SwipeActionsOrientation.html; sourceTree = ""; }; C3062669AF6DE7A69AB333AFBB4A275A /* SwipeCollectionViewCellDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeCollectionViewCellDelegate.swift; path = Source/SwipeCollectionViewCellDelegate.swift; sourceTree = ""; }; C350E2BB7AD588E836BE24C888070EF5 /* NYTPhotoCaptionView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoCaptionView.m; path = NYTPhotoViewer/NYTPhotoCaptionView.m; sourceTree = ""; }; C38143C110FEE746045CFEB897287377 /* DropdownTitleView-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DropdownTitleView-umbrella.h"; sourceTree = ""; }; C396C546A3B41773512D0DCFC9207BD9 /* FLEXExplorerViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXExplorerViewController.m; path = Classes/ExplorerInterface/FLEXExplorerViewController.m; sourceTree = ""; }; C415162951631AC51B3863BECD3D53AA /* NYTPhotoViewerDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoViewerDataSource.h; path = NYTPhotoViewer/Protocols/NYTPhotoViewerDataSource.h; sourceTree = ""; }; C431AF4507F0DFA76A3E11C98794C98F /* IGListBatchUpdateData+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListBatchUpdateData+DebugDescription.m"; path = "Source/Internal/IGListBatchUpdateData+DebugDescription.m"; sourceTree = ""; }; - C434FA7800BB30BF5709EC43C9B11AFB /* androidstudio.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = androidstudio.min.css; path = Pod/Assets/styles/androidstudio.min.css; sourceTree = ""; }; - C441FCFE2C2994BE8A9F0897E0AC986F /* ext_scanners.c */ = {isa = PBXFileReference; includeInIndex = 1; name = ext_scanners.c; path = Source/cmark_gfm/ext_scanners.c; sourceTree = ""; }; - C45987F6B196700C57B304D1E52E02CB /* hy.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = hy.min.js; path = Pod/Assets/Highlighter/languages/hy.min.js; sourceTree = ""; }; + C434FA7800BB30BF5709EC43C9B11AFB /* androidstudio.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = androidstudio.min.css; path = Pod/Assets/styles/androidstudio.min.css; sourceTree = ""; }; + C441FCFE2C2994BE8A9F0897E0AC986F /* ext_scanners.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = ext_scanners.c; path = Source/cmark_gfm/ext_scanners.c; sourceTree = ""; }; + C45987F6B196700C57B304D1E52E02CB /* hy.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = hy.min.js; path = Pod/Assets/Highlighter/languages/hy.min.js; sourceTree = ""; }; C473843E7E3C2D5FE3E5F3A49E7251CF /* Alamofire-watchOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Alamofire-watchOS.xcconfig"; path = "../Alamofire-watchOS/Alamofire-watchOS.xcconfig"; sourceTree = ""; }; C4AE2060D024C6B053AA229D4077844C /* Alamofire+GitHubAPI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Alamofire+GitHubAPI.swift"; path = "GitHubAPI/Alamofire+GitHubAPI.swift"; sourceTree = ""; }; C4BB1EA8A08288A9E29B9497119A7B76 /* IGListCollectionViewLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCollectionViewLayout.h; path = Source/IGListCollectionViewLayout.h; sourceTree = ""; }; - C4CBFF7CBFC2455078E15CAA4352ED53 /* julia.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = julia.min.js; path = Pod/Assets/Highlighter/languages/julia.min.js; sourceTree = ""; }; + C4CBFF7CBFC2455078E15CAA4352ED53 /* julia.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = julia.min.js; path = Pod/Assets/Highlighter/languages/julia.min.js; sourceTree = ""; }; C4D0855DFD0CF7CD8D546CA5FB1A0C0A /* Block+ListElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Block+ListElement.swift"; path = "Source/Block+ListElement.swift"; sourceTree = ""; }; C4FB695F90670016FD30CD7499E3AC40 /* FLEXNetworkSettingsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkSettingsTableViewController.m; path = Classes/Network/FLEXNetworkSettingsTableViewController.m; sourceTree = ""; }; C51908A1392E1D386AAAB085EC7204BB /* references.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = references.h; path = Source/cmark_gfm/include/references.h; sourceTree = ""; }; - C525DDB7209945E492FFCF404ED83272 /* atelier-cave-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-cave-dark.min.css"; path = "Pod/Assets/styles/atelier-cave-dark.min.css"; sourceTree = ""; }; + C525DDB7209945E492FFCF404ED83272 /* atelier-cave-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-cave-dark.min.css"; path = "Pod/Assets/styles/atelier-cave-dark.min.css"; sourceTree = ""; }; C5ACCC3CA2E5864755545A39CBC6E236 /* MessageViewController-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MessageViewController-umbrella.h"; sourceTree = ""; }; C60CB8150C04DA1EDCC1BD1EBD0CB774 /* V3CreateIssueRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3CreateIssueRequest.swift; path = GitHubAPI/V3CreateIssueRequest.swift; sourceTree = ""; }; C61C64B0C7A7ECCB07C7CFB858AF5401 /* FLEX-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FLEX-umbrella.h"; sourceTree = ""; }; - C6316314588570CD961516441AAC65D6 /* mipsasm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = mipsasm.min.js; path = Pod/Assets/Highlighter/languages/mipsasm.min.js; sourceTree = ""; }; - C695035CB4B2BD234C100204DC43F2FF /* haxe.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = haxe.min.js; path = Pod/Assets/Highlighter/languages/haxe.min.js; sourceTree = ""; }; + C6316314588570CD961516441AAC65D6 /* mipsasm.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = mipsasm.min.js; path = Pod/Assets/Highlighter/languages/mipsasm.min.js; sourceTree = ""; }; + C695035CB4B2BD234C100204DC43F2FF /* haxe.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = haxe.min.js; path = Pod/Assets/Highlighter/languages/haxe.min.js; sourceTree = ""; }; C6CD2F511FB5291F8AEF70256462FD7B /* FLEXImageExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXImageExplorerViewController.h; path = Classes/ObjectExplorers/FLEXImageExplorerViewController.h; sourceTree = ""; }; C6F3725B408163BAEC441230AD937283 /* StringHelpers-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "StringHelpers-iOS-dummy.m"; sourceTree = ""; }; C7217A7A499A88A3170D9198DE5554E2 /* IGListSupplementaryViewSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListSupplementaryViewSource.h; path = Source/IGListSupplementaryViewSource.h; sourceTree = ""; }; - C74500AF06CBD0F3945B45CA8295D3DF /* powershell.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = powershell.min.js; path = Pod/Assets/Highlighter/languages/powershell.min.js; sourceTree = ""; }; + C74500AF06CBD0F3945B45CA8295D3DF /* powershell.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = powershell.min.js; path = Pod/Assets/Highlighter/languages/powershell.min.js; sourceTree = ""; }; C7AFE5E3D216B8119B5EA263924845DD /* ListDiffable+FunctionHash.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ListDiffable+FunctionHash.swift"; path = "Source/Swift/ListDiffable+FunctionHash.swift"; sourceTree = ""; }; C7B8298BF2EA348F71BCD3CD5057BFCB /* FBSnapshotTestCasePlatform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestCasePlatform.m; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.m; sourceTree = ""; }; C7C61A11F994B5A6B10075E2DF26AF56 /* NYTPhotoViewerCloseButtonX@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "NYTPhotoViewerCloseButtonX@2x.png"; path = "NYTPhotoViewer/NYTPhotoViewer.bundle/NYTPhotoViewerCloseButtonX@2x.png"; sourceTree = ""; }; - C7D0FB3B6D6E7302A2D4B3CF04F45415 /* brown-paper.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "brown-paper.min.css"; path = "Pod/Assets/styles/brown-paper.min.css"; sourceTree = ""; }; + C7D0FB3B6D6E7302A2D4B3CF04F45415 /* brown-paper.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "brown-paper.min.css"; path = "Pod/Assets/styles/brown-paper.min.css"; sourceTree = ""; }; C818ECEA1438B85F0488E60C228AA32D /* FLEXNetworkTransactionTableViewCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkTransactionTableViewCell.m; path = Classes/Network/FLEXNetworkTransactionTableViewCell.m; sourceTree = ""; }; C81AA62041FB3EB16AD3A06D0FBE4C29 /* SDWebImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDecoder.m; path = SDWebImage/SDWebImageDecoder.m; sourceTree = ""; }; C850E618CBD812FEDE9CD619CA81D33A /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = Source/Assets.xcassets; sourceTree = ""; }; - C8B7CC94355DB7283E0E6DF4BC6D160F /* fortran.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = fortran.min.js; path = Pod/Assets/Highlighter/languages/fortran.min.js; sourceTree = ""; }; + C8B7CC94355DB7283E0E6DF4BC6D160F /* fortran.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = fortran.min.js; path = Pod/Assets/Highlighter/languages/fortran.min.js; sourceTree = ""; }; C8F20722C9B006627FE8627EA8B6DD70 /* MessageViewController.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MessageViewController.modulemap; sourceTree = ""; }; - C8F5BF7F6D9D2A79A2181BD2F75D12F7 /* zh_CN.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = zh_CN.lproj; path = Pod/Assets/zh_CN.lproj; sourceTree = ""; }; + C8F5BF7F6D9D2A79A2181BD2F75D12F7 /* zh_CN.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = zh_CN.lproj; path = Pod/Assets/zh_CN.lproj; sourceTree = ""; }; C8F68F34FA196DF90AA8B8C755BF1D85 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/UIView+WebCache.m"; sourceTree = ""; }; C9C9CBCAD62161A34C7037B300068023 /* SwipeCellKit-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SwipeCellKit-prefix.pch"; sourceTree = ""; }; C9EE76CD2D14E99ABF3FE67E37FBF42C /* SwipeActionTransitioning.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SwipeActionTransitioning.swift; path = Source/SwipeActionTransitioning.swift; sourceTree = ""; }; C9F02A28915808FADE4DEA434D87FA3B /* GitHubUserSession.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GitHubUserSession.swift; path = GitHubSession/GitHubUserSession.swift; sourceTree = ""; }; - C9F03435FB20E1F99433EE0EEE04B447 /* dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = dark.min.css; path = Pod/Assets/styles/dark.min.css; sourceTree = ""; }; + C9F03435FB20E1F99433EE0EEE04B447 /* dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = dark.min.css; path = Pod/Assets/styles/dark.min.css; sourceTree = ""; }; CA4AD10072461C4D2FE2930257944CDF /* Alamofire-iOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-iOS-dummy.m"; sourceTree = ""; }; - CA59DF45B09DE0AFBB04511F4E0CFA94 /* no.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = no.lproj; path = Pod/Assets/no.lproj; sourceTree = ""; }; + CA59DF45B09DE0AFBB04511F4E0CFA94 /* no.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = no.lproj; path = Pod/Assets/no.lproj; sourceTree = ""; }; CA952DCED4E085C3ACB2AEAF4949EA65 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; CA95DED76018D17C4BEEFEE30554C9E3 /* IGListBatchUpdateData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchUpdateData.h; path = Source/Common/IGListBatchUpdateData.h; sourceTree = ""; }; CAE6B49777B1FB233A957C9A31406B6F /* FLEXFieldEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFieldEditorViewController.m; path = Classes/Editing/FLEXFieldEditorViewController.m; sourceTree = ""; }; - CB2AC4B39A95687BB94A3A16A114EBE8 /* atelier-sulphurpool-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-sulphurpool-light.min.css"; path = "Pod/Assets/styles/atelier-sulphurpool-light.min.css"; sourceTree = ""; }; - CB5A51F6BC6485032A181A76E2157113 /* SwipeExpansionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeExpansionStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle.html; sourceTree = ""; }; + CB2AC4B39A95687BB94A3A16A114EBE8 /* atelier-sulphurpool-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-sulphurpool-light.min.css"; path = "Pod/Assets/styles/atelier-sulphurpool-light.min.css"; sourceTree = ""; }; + CB5A51F6BC6485032A181A76E2157113 /* SwipeExpansionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeExpansionStyle.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionStyle.html; sourceTree = ""; }; CB8FE3020F1FE1EA59A5E25B6C8A77D8 /* FLEXArgumentInputFontView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputFontView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputFontView.h; sourceTree = ""; }; CBC274F39CA59F9452FEAA3A2FAC1C4B /* FLEXSQLiteDatabaseManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXSQLiteDatabaseManager.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXSQLiteDatabaseManager.h; sourceTree = ""; }; CBD013FE9F7AC2AB5D1FEB6F5D005C7F /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/UIImage+GIF.m"; sourceTree = ""; }; CBD38FBC82167672C9AD3F671F4796D5 /* BarPagerTabStripViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BarPagerTabStripViewController.swift; path = Sources/BarPagerTabStripViewController.swift; sourceTree = ""; }; CBD79A77486215CBB72AD97514067701 /* FLEXLayerExplorerViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLayerExplorerViewController.h; path = Classes/ObjectExplorers/FLEXLayerExplorerViewController.h; sourceTree = ""; }; - CC13B99E6015C1C646B1554EE0BE4E76 /* HandlerInvocationTiming.html */ = {isa = PBXFileReference; includeInIndex = 1; name = HandlerInvocationTiming.html; path = docs/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html; sourceTree = ""; }; + CC13B99E6015C1C646B1554EE0BE4E76 /* HandlerInvocationTiming.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = HandlerInvocationTiming.html; path = docs/Structs/SwipeExpansionStyle/FillOptions/HandlerInvocationTiming.html; sourceTree = ""; }; CC71552238F423B45CF96826CEB06F89 /* ConstraintMakerEditable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintMakerEditable.swift; path = Source/ConstraintMakerEditable.swift; sourceTree = ""; }; CC80E64CE8930BF4E1D697567C163341 /* ListSwiftSectionController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListSwiftSectionController.swift; path = Source/Swift/ListSwiftSectionController.swift; sourceTree = ""; }; CD374963785F7A324368652BA87C291C /* FLEXNetworkCurlLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkCurlLogger.m; path = Classes/Network/FLEXNetworkCurlLogger.m; sourceTree = ""; }; CD3C1D270C411381D173E26F40823C37 /* IGListSectionMap.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListSectionMap.m; path = Source/Internal/IGListSectionMap.m; sourceTree = ""; }; - CD4D35E55694B44A0C5949D7A42BBC00 /* Guides.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Guides.html; path = docs/Guides.html; sourceTree = ""; }; + CD4D35E55694B44A0C5949D7A42BBC00 /* Guides.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Guides.html; path = docs/Guides.html; sourceTree = ""; }; CD6D2B3F763745AD4414DF9F43EB5F64 /* V3SetIssueStatusRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3SetIssueStatusRequest.swift; path = GitHubAPI/V3SetIssueStatusRequest.swift; sourceTree = ""; }; CD72A1B4B36836570DDB7DD53655A14F /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = ""; }; CDB8D4A2E1716DEFF6AA3AEE732AE85D /* footnotes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = footnotes.h; path = Source/cmark_gfm/include/footnotes.h; sourceTree = ""; }; - CDBDCB2D54FEF0046D4122F13BE08392 /* r.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = r.min.js; path = Pod/Assets/Highlighter/languages/r.min.js; sourceTree = ""; }; + CDBDCB2D54FEF0046D4122F13BE08392 /* r.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = r.min.js; path = Pod/Assets/Highlighter/languages/r.min.js; sourceTree = ""; }; CE3B6EDE2A0809E722123B4F3232DF30 /* FLEXClassesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXClassesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXClassesTableViewController.h; sourceTree = ""; }; - CEE2FEA6F0A7E7B79B2CBBBE37B5AD98 /* ocaml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ocaml.min.js; path = Pod/Assets/Highlighter/languages/ocaml.min.js; sourceTree = ""; }; - CF1358510A41D35F9D5B0D5E05E20AF2 /* livescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = livescript.min.js; path = Pod/Assets/Highlighter/languages/livescript.min.js; sourceTree = ""; }; - CF72C73101BC604072FE4548C6612FD7 /* cmark_gfm_swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = cmark_gfm_swift.framework; path = "cmark-gfm-swift.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; + CEE2FEA6F0A7E7B79B2CBBBE37B5AD98 /* ocaml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ocaml.min.js; path = Pod/Assets/Highlighter/languages/ocaml.min.js; sourceTree = ""; }; + CF1358510A41D35F9D5B0D5E05E20AF2 /* livescript.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = livescript.min.js; path = Pod/Assets/Highlighter/languages/livescript.min.js; sourceTree = ""; }; + CF72C73101BC604072FE4548C6612FD7 /* cmark_gfm_swift.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = cmark_gfm_swift.framework; sourceTree = BUILT_PRODUCTS_DIR; }; CF886475C5653FA046A74D96CBDDF561 /* GraphQLResultNormalizer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLResultNormalizer.swift; path = Sources/Apollo/GraphQLResultNormalizer.swift; sourceTree = ""; }; - CFAE324E695D5748C220A6F89744D9E6 /* DropdownTitleView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DropdownTitleView.framework; path = DropdownTitleView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + CFAE324E695D5748C220A6F89744D9E6 /* DropdownTitleView.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = DropdownTitleView.framework; sourceTree = BUILT_PRODUCTS_DIR; }; CFF2AFD82C3AE19657485F4CFDAD13C2 /* UIScrollView+StopScrolling.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIScrollView+StopScrolling.swift"; path = "MessageViewController/UIScrollView+StopScrolling.swift"; sourceTree = ""; }; D01D3AB0035AA17D9ECCF5B236F98FBE /* V3StatusCodeResponse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3StatusCodeResponse.swift; path = GitHubAPI/V3StatusCodeResponse.swift; sourceTree = ""; }; D024831CC3379D9404DFCAAC8D05D7F2 /* FLEXLiveObjectsTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXLiveObjectsTableViewController.m; path = Classes/GlobalStateExplorers/FLEXLiveObjectsTableViewController.m; sourceTree = ""; }; - D05BFCDA284F7BF4D4714426FF9DE995 /* java.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = java.min.js; path = Pod/Assets/Highlighter/languages/java.min.js; sourceTree = ""; }; + D05BFCDA284F7BF4D4714426FF9DE995 /* java.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = java.min.js; path = Pod/Assets/Highlighter/languages/java.min.js; sourceTree = ""; }; D0918115AD4585B963D87B949260E212 /* String+WordAtRange.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "String+WordAtRange.swift"; path = "MessageViewController/String+WordAtRange.swift"; sourceTree = ""; }; D0D895A657A8B0B062E4CAB73223F68C /* FLEXNetworkTransactionTableViewCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXNetworkTransactionTableViewCell.h; path = Classes/Network/FLEXNetworkTransactionTableViewCell.h; sourceTree = ""; }; D0D999F1A8BB53591D241706870D4E4F /* FLAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "FLAnimatedImageView+WebCache.m"; path = "SDWebImage/FLAnimatedImage/FLAnimatedImageView+WebCache.m"; sourceTree = ""; }; @@ -2985,32 +2988,32 @@ D24CF8BEBCCC3438515964ED483A09E3 /* ContextMenu+Position.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "ContextMenu+Position.swift"; path = "ContextMenu/ContextMenu+Position.swift"; sourceTree = ""; }; D27B7E503644A520DC97443BE96C14A1 /* IGListReloadDataUpdater.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListReloadDataUpdater.m; path = Source/IGListReloadDataUpdater.m; sourceTree = ""; }; D2950E8B2B952F73B4D4CC66146D1211 /* FlatCache.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FlatCache.xcconfig; sourceTree = ""; }; - D2A954C26E47C8A3243C78079A965B47 /* nimrod.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = nimrod.min.js; path = Pod/Assets/Highlighter/languages/nimrod.min.js; sourceTree = ""; }; + D2A954C26E47C8A3243C78079A965B47 /* nimrod.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = nimrod.min.js; path = Pod/Assets/Highlighter/languages/nimrod.min.js; sourceTree = ""; }; D2C0B6BA32661F63FBA4A4769BFB3824 /* IGListDebugger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDebugger.h; path = Source/Internal/IGListDebugger.h; sourceTree = ""; }; D3512F04252972F6F91F599881FE2B91 /* UIImage+Snapshot.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Snapshot.h"; path = "FBSnapshotTestCase/Categories/UIImage+Snapshot.h"; sourceTree = ""; }; D39910B72E2B8D5565EBDF072ADB1551 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/NSData+ImageContentType.m"; sourceTree = ""; }; - D3AA275F61C156CEB16DACB3CC3DA56F /* SwipeTableViewCell.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTableViewCell.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeTableViewCell.html; sourceTree = ""; }; + D3AA275F61C156CEB16DACB3CC3DA56F /* SwipeTableViewCell.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeTableViewCell.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeTableViewCell.html; sourceTree = ""; }; D3ABF998CB8A0717E1978FD0CBB2A977 /* FLAnimatedImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "FLAnimatedImage-dummy.m"; sourceTree = ""; }; D3CC0E60627162702834C9DCAAC6A842 /* ImageAlertAction-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ImageAlertAction-prefix.pch"; sourceTree = ""; }; D3F8421CFABE1D37C85ED7996A52D6AB /* NSImage+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+WebCache.m"; path = "SDWebImage/NSImage+WebCache.m"; sourceTree = ""; }; - D41FF0D39AA0AA75906BC70EC349AA4B /* NYTPhotoViewer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = NYTPhotoViewer.framework; path = NYTPhotoViewer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D41FF0D39AA0AA75906BC70EC349AA4B /* NYTPhotoViewer.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = NYTPhotoViewer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D4363AF0ED170CD97668854DB299A881 /* IGListStackedSectionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListStackedSectionController.m; path = Source/IGListStackedSectionController.m; sourceTree = ""; }; - D4776697D8656F25490F7E3BF76607F2 /* SwipeActionTransitioning.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionTransitioning.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeActionTransitioning.html; sourceTree = ""; }; + D4776697D8656F25490F7E3BF76607F2 /* SwipeActionTransitioning.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeActionTransitioning.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Protocols/SwipeActionTransitioning.html; sourceTree = ""; }; D498DCE95FD380A72287D893173E2ED0 /* NYTPhotoViewer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoViewer.h; path = NYTPhotoViewer/NYTPhotoViewer.h; sourceTree = ""; }; D4AD11B0D494ED099E677C39767FB3AE /* Highlightr.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Highlightr.xcconfig; sourceTree = ""; }; D4BA2D9B2E31B2277422F7C137DF1F76 /* IGListDisplayDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDisplayDelegate.h; path = Source/IGListDisplayDelegate.h; sourceTree = ""; }; D4DDFBFC2A76EA109CC397D97863FB72 /* FLEXPropertyEditorViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXPropertyEditorViewController.m; path = Classes/Editing/FLEXPropertyEditorViewController.m; sourceTree = ""; }; - D4F744DC25BBCA7AB2668F0445C15B80 /* crmsh.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = crmsh.min.js; path = Pod/Assets/Highlighter/languages/crmsh.min.js; sourceTree = ""; }; - D50B46F65E51F96A0EFDD4CD5184D721 /* SwipeExpansionAnimationTimingParameters.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeExpansionAnimationTimingParameters.html; path = docs/Structs/SwipeExpansionAnimationTimingParameters.html; sourceTree = ""; }; + D4F744DC25BBCA7AB2668F0445C15B80 /* crmsh.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = crmsh.min.js; path = Pod/Assets/Highlighter/languages/crmsh.min.js; sourceTree = ""; }; + D50B46F65E51F96A0EFDD4CD5184D721 /* SwipeExpansionAnimationTimingParameters.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeExpansionAnimationTimingParameters.html; path = docs/Structs/SwipeExpansionAnimationTimingParameters.html; sourceTree = ""; }; D52B09133ECA02C9A6F3A8DD575CB91B /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/NSData+ImageContentType.h"; sourceTree = ""; }; - D530584E82A2DED6125F078A48B6720E /* atelier-forest-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-forest-dark.min.css"; path = "Pod/Assets/styles/atelier-forest-dark.min.css"; sourceTree = ""; }; - D5845906F6FE572013843CE811A3EBE1 /* parser3.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = parser3.min.js; path = Pod/Assets/Highlighter/languages/parser3.min.js; sourceTree = ""; }; + D530584E82A2DED6125F078A48B6720E /* atelier-forest-dark.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-forest-dark.min.css"; path = "Pod/Assets/styles/atelier-forest-dark.min.css"; sourceTree = ""; }; + D5845906F6FE572013843CE811A3EBE1 /* parser3.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = parser3.min.js; path = Pod/Assets/Highlighter/languages/parser3.min.js; sourceTree = ""; }; D5B155C917EEFE11DF4952B8810982D0 /* HTMLString-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "HTMLString-dummy.m"; sourceTree = ""; }; D5C0E1EC7082F3EA20CC1B72FE6850A9 /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; - D5DFAC222767139CDEBD5C567DE917C6 /* tcl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = tcl.min.js; path = Pod/Assets/Highlighter/languages/tcl.min.js; sourceTree = ""; }; - D5F7787D2897351AEC714829D11ADB3F /* atelier-heath-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-heath-light.min.css"; path = "Pod/Assets/styles/atelier-heath-light.min.css"; sourceTree = ""; }; + D5DFAC222767139CDEBD5C567DE917C6 /* tcl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = tcl.min.js; path = Pod/Assets/Highlighter/languages/tcl.min.js; sourceTree = ""; }; + D5F7787D2897351AEC714829D11ADB3F /* atelier-heath-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-heath-light.min.css"; path = "Pod/Assets/styles/atelier-heath-light.min.css"; sourceTree = ""; }; D64D3D389A8F84580281BFA176A33168 /* GraphQLInputValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLInputValue.swift; path = Sources/Apollo/GraphQLInputValue.swift; sourceTree = ""; }; - D672896C7BCBA7C1AC05F2F37B36A468 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage.framework; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + D672896C7BCBA7C1AC05F2F37B36A468 /* SDWebImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; D703151FFF3C54FC3137D08BA0A23AE3 /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; D72B82536D6820968021AD913AE7DE05 /* AlamofireNetworkActivityIndicator.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AlamofireNetworkActivityIndicator.modulemap; sourceTree = ""; }; D7355323835F22E984A97650193E18DA /* NSString+IGListDiffable.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+IGListDiffable.m"; path = "Source/Common/NSString+IGListDiffable.m"; sourceTree = ""; }; @@ -3019,78 +3022,78 @@ D7B578CA265BCE8EABD6417499940350 /* FMDB.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = FMDB.xcconfig; sourceTree = ""; }; D7D0481A3B6622B380D33F80A96E9C63 /* DateAgo-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "DateAgo-iOS.modulemap"; sourceTree = ""; }; D819C64B7754416374E4532BD6F1AF10 /* NYTPhotoViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoViewController.m; path = NYTPhotoViewer/NYTPhotoViewController.m; sourceTree = ""; }; - D827732E94BC900A9C17DAD6C26ADF71 /* SwipeTableViewCell.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTableViewCell.html; path = docs/Classes/SwipeTableViewCell.html; sourceTree = ""; }; - D83D69C7B4A63664E8C3F0880EBC0051 /* SwipeExpansionAnimationTimingParameters.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeExpansionAnimationTimingParameters.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionAnimationTimingParameters.html; sourceTree = ""; }; - D86C0D8C67D1B7A5B7F81C880F9BE2A2 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = pt.lproj; path = Pod/Assets/pt.lproj; sourceTree = ""; }; + D827732E94BC900A9C17DAD6C26ADF71 /* SwipeTableViewCell.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeTableViewCell.html; path = docs/Classes/SwipeTableViewCell.html; sourceTree = ""; }; + D83D69C7B4A63664E8C3F0880EBC0051 /* SwipeExpansionAnimationTimingParameters.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeExpansionAnimationTimingParameters.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Structs/SwipeExpansionAnimationTimingParameters.html; sourceTree = ""; }; + D86C0D8C67D1B7A5B7F81C880F9BE2A2 /* pt.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = pt.lproj; path = Pod/Assets/pt.lproj; sourceTree = ""; }; D8C6F96E169B918699D7F70CC5FFEC55 /* UIApplication+Routable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIApplication+Routable.swift"; path = "GitHawkRoutes/UIApplication+Routable.swift"; sourceTree = ""; }; D8D4027D186DDAC16B047A8E2C8000DF /* ConstraintConfig.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConstraintConfig.swift; path = Source/ConstraintConfig.swift; sourceTree = ""; }; D90C81350FE323A35AC60B22B5210CE2 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/SDWebImageDownloader.h; sourceTree = ""; }; D938DCBD15EA2C9D7A443DB4CC75125B /* NYTPhotoViewer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "NYTPhotoViewer-dummy.m"; sourceTree = ""; }; - D94BBE057BD9AAEB8CD281379F65DA41 /* hsp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = hsp.min.js; path = Pod/Assets/Highlighter/languages/hsp.min.js; sourceTree = ""; }; + D94BBE057BD9AAEB8CD281379F65DA41 /* hsp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = hsp.min.js; path = Pod/Assets/Highlighter/languages/hsp.min.js; sourceTree = ""; }; D97BD8258AAB128073C013BF32FDBED5 /* Theme.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Theme.swift; path = Pod/Classes/Theme.swift; sourceTree = ""; }; - D9943CA75347A26F1B11240077931D37 /* verilog.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = verilog.min.js; path = Pod/Assets/Highlighter/languages/verilog.min.js; sourceTree = ""; }; + D9943CA75347A26F1B11240077931D37 /* verilog.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = verilog.min.js; path = Pod/Assets/Highlighter/languages/verilog.min.js; sourceTree = ""; }; D9C2E84480EBA8B7CF98FD181BDFD016 /* FLEXInstancesTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXInstancesTableViewController.m; path = Classes/GlobalStateExplorers/FLEXInstancesTableViewController.m; sourceTree = ""; }; D9C3018E8CBCF7519423A3D53AB8A414 /* FLEXTableLeftCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXTableLeftCell.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableLeftCell.h; sourceTree = ""; }; DA1627C13D0F045E89000691F5C46F6D /* IGListExperiments.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListExperiments.h; path = Source/Common/IGListExperiments.h; sourceTree = ""; }; DA46BAD26DAC1A1512FB1B13E1F4543C /* TUSafariActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TUSafariActivity.h; path = Pod/Classes/TUSafariActivity.h; sourceTree = ""; }; - DA72EF8508786F7A1B11B288194DF61F /* scala.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = scala.min.js; path = Pod/Assets/Highlighter/languages/scala.min.js; sourceTree = ""; }; + DA72EF8508786F7A1B11B288194DF61F /* scala.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = scala.min.js; path = Pod/Assets/Highlighter/languages/scala.min.js; sourceTree = ""; }; DA86674535BFA469B79F3041576A2DE0 /* Pods-FreetimeWatch.testflight.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeWatch.testflight.xcconfig"; sourceTree = ""; }; DAB3105D001ED75458BAF298CAA62A96 /* NYTPhotosViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotosViewController.h; path = NYTPhotoViewer/NYTPhotosViewController.h; sourceTree = ""; }; - DB1170A2007205A45827F6766C81A19A /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Structs.html; path = docs/Structs.html; sourceTree = ""; }; + DB1170A2007205A45827F6766C81A19A /* Structs.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = Structs.html; path = docs/Structs.html; sourceTree = ""; }; DB671E53BD8E2BAC540B6B54A5152FBB /* IGListAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapter.h; path = Source/IGListAdapter.h; sourceTree = ""; }; - DB6FDE26751FA40F1595B3106D2BE712 /* mercury.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = mercury.min.js; path = Pod/Assets/Highlighter/languages/mercury.min.js; sourceTree = ""; }; - DBA22B8BE7E16A9EAD9C99AC5F2ABA0F /* StyledTextKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = StyledTextKit.framework; path = StyledTextKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DB6FDE26751FA40F1595B3106D2BE712 /* mercury.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = mercury.min.js; path = Pod/Assets/Highlighter/languages/mercury.min.js; sourceTree = ""; }; + DBA22B8BE7E16A9EAD9C99AC5F2ABA0F /* StyledTextKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = StyledTextKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DBD63BF1C7A0B5DDA4ED7319092EC1C4 /* GitHubAPI-watchOS-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "GitHubAPI-watchOS-dummy.m"; path = "../GitHubAPI-watchOS/GitHubAPI-watchOS-dummy.m"; sourceTree = ""; }; DBE07DB03AC0FA069A2FDC0AA57CDB1D /* CGSize+Utility.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "CGSize+Utility.swift"; path = "Source/CGSize+Utility.swift"; sourceTree = ""; }; DBE6641DA8A26F47E392F461B05A37DF /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = ""; }; - DC12AC55D10DA132C75770997AEA1307 /* q.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = q.min.js; path = Pod/Assets/Highlighter/languages/q.min.js; sourceTree = ""; }; - DC36ECEDE93A3F92E1B55E3438DDDFC0 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = ja.lproj; path = Pod/Assets/ja.lproj; sourceTree = ""; }; + DC12AC55D10DA132C75770997AEA1307 /* q.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = q.min.js; path = Pod/Assets/Highlighter/languages/q.min.js; sourceTree = ""; }; + DC36ECEDE93A3F92E1B55E3438DDDFC0 /* ja.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = ja.lproj; path = Pod/Assets/ja.lproj; sourceTree = ""; }; DC470190D1F87C5F93D6E8CD61E94289 /* GitHubAPI-iOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "GitHubAPI-iOS.modulemap"; sourceTree = ""; }; DC52EA562F514D432BB1B932A5305B2E /* Apollo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Apollo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DCAFF35F3D5509849A7300467EEA6255 /* Utilities.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Utilities.swift; path = Sources/Apollo/Utilities.swift; sourceTree = ""; }; DCB390182D1F890120D6BDA16CA64275 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - DD5DE8F2197382A3ED88C9BF72E9F715 /* SwipeCellKit.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; path = SwipeCellKit.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + DD5DE8F2197382A3ED88C9BF72E9F715 /* SwipeCellKit.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; path = SwipeCellKit.podspec; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; DD6FB7A65F10BD626E2C2448BA04CE54 /* UICollectionView+IGListBatchUpdateData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionView+IGListBatchUpdateData.h"; path = "Source/Internal/UICollectionView+IGListBatchUpdateData.h"; sourceTree = ""; }; DDE1A2EC08A3F5F06ABAE15045433860 /* FLEXArgumentInputViewFactory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputViewFactory.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputViewFactory.m; sourceTree = ""; }; DE0A097F80A58BD5C7BACA46D58EE964 /* FLEXGlobalsTableViewControllerEntry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXGlobalsTableViewControllerEntry.h; path = Classes/ObjectExplorers/FLEXGlobalsTableViewControllerEntry.h; sourceTree = ""; }; - DE41A573CF8DDABB8506722FE96A63AB /* stan.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = stan.min.js; path = Pod/Assets/Highlighter/languages/stan.min.js; sourceTree = ""; }; + DE41A573CF8DDABB8506722FE96A63AB /* stan.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = stan.min.js; path = Pod/Assets/Highlighter/languages/stan.min.js; sourceTree = ""; }; DE59963F07AF9631D5C3D4B37429F909 /* Pods-FreetimeWatch Extension.testflight.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeWatch Extension.testflight.xcconfig"; sourceTree = ""; }; DEB69111241ED404D9FCA36E87577E30 /* NetworkActivityIndicatorManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkActivityIndicatorManager.swift; path = Source/NetworkActivityIndicatorManager.swift; sourceTree = ""; }; - DF53EC11679DD7E6582F3B21FA903C96 /* rib.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = rib.min.js; path = Pod/Assets/Highlighter/languages/rib.min.js; sourceTree = ""; }; + DF53EC11679DD7E6582F3B21FA903C96 /* rib.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = rib.min.js; path = Pod/Assets/Highlighter/languages/rib.min.js; sourceTree = ""; }; DFA80896188FFD397D780C70EAC8477F /* FLEXRuntimeUtility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXRuntimeUtility.h; path = Classes/Utility/FLEXRuntimeUtility.h; sourceTree = ""; }; - DFE0F5262B11D34391D636931C5395B9 /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; name = jazzy.js; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jazzy.js; sourceTree = ""; }; + DFE0F5262B11D34391D636931C5395B9 /* jazzy.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = jazzy.js; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/js/jazzy.js; sourceTree = ""; }; DFE2FC6514CC5077ABBBA9366724201D /* Pods-FreetimeWatch-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FreetimeWatch-resources.sh"; sourceTree = ""; }; - DFF52564F05C4AFF5A2482CE878A6DB2 /* go.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = go.min.js; path = Pod/Assets/Highlighter/languages/go.min.js; sourceTree = ""; }; + DFF52564F05C4AFF5A2482CE878A6DB2 /* go.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = go.min.js; path = Pod/Assets/Highlighter/languages/go.min.js; sourceTree = ""; }; E045C0D47AB4EE266B53C61DBFC4C924 /* StringHelpers-iOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "StringHelpers-iOS.xcconfig"; sourceTree = ""; }; E059F74A3BE118E4B0361DC254AB780C /* FMDB-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FMDB-umbrella.h"; sourceTree = ""; }; E05BC80A63830EB58168DF8B338162EE /* IGListWorkingRangeDelegate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListWorkingRangeDelegate.h; path = Source/IGListWorkingRangeDelegate.h; sourceTree = ""; }; - E0880760FC15327CC95E1D97BD545337 /* gauss.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = gauss.min.js; path = Pod/Assets/Highlighter/languages/gauss.min.js; sourceTree = ""; }; - E0F568A4DA30A32E4A24CAF50D974BAE /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; name = highlight.css; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/highlight.css; sourceTree = ""; }; + E0880760FC15327CC95E1D97BD545337 /* gauss.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = gauss.min.js; path = Pod/Assets/Highlighter/languages/gauss.min.js; sourceTree = ""; }; + E0F568A4DA30A32E4A24CAF50D974BAE /* highlight.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = highlight.css; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/css/highlight.css; sourceTree = ""; }; E1030DDDADEC4AB33110A322BF81A8F2 /* TUSafariActivity-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "TUSafariActivity-umbrella.h"; sourceTree = ""; }; E1AF1A826BCA1874AA8A76F3D47D02CE /* IGListBatchUpdateState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBatchUpdateState.h; path = Source/Internal/IGListBatchUpdateState.h; sourceTree = ""; }; E1B5307964635DD337D1E9B8E51B157C /* V3Milestone.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3Milestone.swift; path = GitHubAPI/V3Milestone.swift; sourceTree = ""; }; E1E675B273F341CCB56A620B91CC4EBE /* FLEXRuntimeUtility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXRuntimeUtility.m; path = Classes/Utility/FLEXRuntimeUtility.m; sourceTree = ""; }; - E1F1A35E86865EA5CF54F17304F1132C /* delphi.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = delphi.min.js; path = Pod/Assets/Highlighter/languages/delphi.min.js; sourceTree = ""; }; - E2247CD44031A7F560B02EBBA7349898 /* gcode.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = gcode.min.js; path = Pod/Assets/Highlighter/languages/gcode.min.js; sourceTree = ""; }; + E1F1A35E86865EA5CF54F17304F1132C /* delphi.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = delphi.min.js; path = Pod/Assets/Highlighter/languages/delphi.min.js; sourceTree = ""; }; + E2247CD44031A7F560B02EBBA7349898 /* gcode.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = gcode.min.js; path = Pod/Assets/Highlighter/languages/gcode.min.js; sourceTree = ""; }; E26E5179C4E9E9EC28C98B7533C33DCC /* IGListMoveIndex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListMoveIndex.h; path = Source/Common/IGListMoveIndex.h; sourceTree = ""; }; E27667D8D56BDCF7EF1539C053873973 /* CLSReport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CLSReport.h; path = iOS/Crashlytics.framework/Headers/CLSReport.h; sourceTree = ""; }; - E287B06F4C79666181F84781D5576BCB /* blocks.c */ = {isa = PBXFileReference; includeInIndex = 1; name = blocks.c; path = Source/cmark_gfm/blocks.c; sourceTree = ""; }; + E287B06F4C79666181F84781D5576BCB /* blocks.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = blocks.c; path = Source/cmark_gfm/blocks.c; sourceTree = ""; }; E28A6ADACCFF5000807ED3C95FE60750 /* Pods-FreetimeWatch-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-FreetimeWatch-frameworks.sh"; sourceTree = ""; }; - E3299ED76645DE0E043601667EE2B5EA /* solarized-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "solarized-light.min.css"; path = "Pod/Assets/styles/solarized-light.min.css"; sourceTree = ""; }; + E3299ED76645DE0E043601667EE2B5EA /* solarized-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "solarized-light.min.css"; path = "Pod/Assets/styles/solarized-light.min.css"; sourceTree = ""; }; E3317A131DC7B5E8044A2287FA4B6C7E /* FLEXLibrariesTableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXLibrariesTableViewController.h; path = Classes/GlobalStateExplorers/FLEXLibrariesTableViewController.h; sourceTree = ""; }; E3562B40518C750F338F09C415AF0B1F /* MessageViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MessageViewController-prefix.pch"; sourceTree = ""; }; - E37B49C0DD3734967A624BE6C72B3FC2 /* erb.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = erb.min.js; path = Pod/Assets/Highlighter/languages/erb.min.js; sourceTree = ""; }; - E388B33C4C023CB53FCC92BD278EADD1 /* xml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = xml.min.js; path = Pod/Assets/Highlighter/languages/xml.min.js; sourceTree = ""; }; + E37B49C0DD3734967A624BE6C72B3FC2 /* erb.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = erb.min.js; path = Pod/Assets/Highlighter/languages/erb.min.js; sourceTree = ""; }; + E388B33C4C023CB53FCC92BD278EADD1 /* xml.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = xml.min.js; path = Pod/Assets/Highlighter/languages/xml.min.js; sourceTree = ""; }; E40FFA2BEC8090E11BFC8FE09E375B61 /* FLEXTableListViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableListViewController.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableListViewController.m; sourceTree = ""; }; E4930BA5620D871DE6A7FE0BD4371BA4 /* IGListStackedSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListStackedSectionController.h; path = Source/IGListStackedSectionController.h; sourceTree = ""; }; E4B3F241FE34B4B5E057351648A4974F /* Element.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Element.swift; path = Source/Element.swift; sourceTree = ""; }; E5BA488A3A78F5B126E7C33FF3D1FDD1 /* FLEXHeapEnumerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXHeapEnumerator.h; path = Classes/Utility/FLEXHeapEnumerator.h; sourceTree = ""; }; - E5D04A84837931B4636DEBBF8CC938A2 /* ebnf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ebnf.min.js; path = Pod/Assets/Highlighter/languages/ebnf.min.js; sourceTree = ""; }; + E5D04A84837931B4636DEBBF8CC938A2 /* ebnf.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ebnf.min.js; path = Pod/Assets/Highlighter/languages/ebnf.min.js; sourceTree = ""; }; E672973D93539F623C4B4692B6D4EB58 /* UICollectionViewLayout+InteractiveReordering.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+InteractiveReordering.m"; path = "Source/Internal/UICollectionViewLayout+InteractiveReordering.m"; sourceTree = ""; }; - E67F252B8874FDE041D44A70459FD866 /* dart.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = dart.min.js; path = Pod/Assets/Highlighter/languages/dart.min.js; sourceTree = ""; }; + E67F252B8874FDE041D44A70459FD866 /* dart.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = dart.min.js; path = Pod/Assets/Highlighter/languages/dart.min.js; sourceTree = ""; }; E6B2360CE8B96211F17D6FE899DC6DE0 /* SwipeCollectionViewCell+Display.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "SwipeCollectionViewCell+Display.swift"; path = "Source/SwipeCollectionViewCell+Display.swift"; sourceTree = ""; }; E6C878D0FCFC1C345241D1EE509E5EB4 /* FLEXMultiColumnTableView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXMultiColumnTableView.h; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXMultiColumnTableView.h; sourceTree = ""; }; - E6F602D2A7DC94F3757CEDDE7EC9CA24 /* render.c */ = {isa = PBXFileReference; includeInIndex = 1; name = render.c; path = Source/cmark_gfm/render.c; sourceTree = ""; }; + E6F602D2A7DC94F3757CEDDE7EC9CA24 /* render.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = render.c; path = Source/cmark_gfm/render.c; sourceTree = ""; }; E7051B812002BE02EA08D1194178312A /* IGListBindingSectionController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBindingSectionController.h; path = Source/IGListBindingSectionController.h; sourceTree = ""; }; E7310108DB5F5A3252002E56DE7E47ED /* StyledTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledTextView.swift; path = Source/StyledTextView.swift; sourceTree = ""; }; E75D40E024C9CBC322E2C1994A3D636D /* ImageAlertAction-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "ImageAlertAction-dummy.m"; sourceTree = ""; }; @@ -3098,56 +3101,56 @@ E7A67270CB3A5967E1AE711AB558F82A /* safari@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; name = "safari@3x.png"; path = "Pod/Assets/safari@3x.png"; sourceTree = ""; }; E7F4ACE34852866178E7A9404002FA18 /* NetworkTransport.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkTransport.swift; path = Sources/Apollo/NetworkTransport.swift; sourceTree = ""; }; E873822122E9802951CBD44244F39215 /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; - E88EF1BBD20D6A463B6A1A67814B83C6 /* d.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = d.min.js; path = Pod/Assets/Highlighter/languages/d.min.js; sourceTree = ""; }; + E88EF1BBD20D6A463B6A1A67814B83C6 /* d.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = d.min.js; path = Pod/Assets/Highlighter/languages/d.min.js; sourceTree = ""; }; E89497858BFEC64C940998CE5E6ABA2A /* FLEXKeyboardHelpViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXKeyboardHelpViewController.m; path = Classes/Utility/FLEXKeyboardHelpViewController.m; sourceTree = ""; }; E8A10B29B6F9ED32D904196EAA9C9457 /* V3AssigneesRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3AssigneesRequest.swift; path = GitHubAPI/V3AssigneesRequest.swift; sourceTree = ""; }; E8A99120CB2DC5202133FD4EAF00A409 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; E8C0BD24AD485A98DA7D515C27D7186B /* FLAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLAnimatedImageView.m; path = FLAnimatedImage/FLAnimatedImageView.m; sourceTree = ""; }; E8F7C5F0A13BF1E3E900887398338915 /* InMemoryNormalizedCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InMemoryNormalizedCache.swift; path = Sources/Apollo/InMemoryNormalizedCache.swift; sourceTree = ""; }; E92A39AC74FD52DC410FC3F515F0CEEF /* IGListKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = IGListKit.modulemap; sourceTree = ""; }; - E94207367FBFF429FD9EA3DCFB5BDE59 /* autohotkey.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = autohotkey.min.js; path = Pod/Assets/Highlighter/languages/autohotkey.min.js; sourceTree = ""; }; + E94207367FBFF429FD9EA3DCFB5BDE59 /* autohotkey.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = autohotkey.min.js; path = Pod/Assets/Highlighter/languages/autohotkey.min.js; sourceTree = ""; }; E950F8987AF3465733241F6FDA6E93BE /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/SDWebImageCompat.m; sourceTree = ""; }; E985272E3686DA1D55B305886810ADF8 /* IGListCollectionViewDelegateLayout.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListCollectionViewDelegateLayout.h; path = Source/IGListCollectionViewDelegateLayout.h; sourceTree = ""; }; E98890E310211A58E175798C2608A341 /* FBSnapshotTestCasePlatform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FBSnapshotTestCasePlatform.h; path = FBSnapshotTestCase/FBSnapshotTestCasePlatform.h; sourceTree = ""; }; E9B407B01EC203092908F3CCCED547EA /* FLEXArgumentInputDateView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputDateView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputDateView.m; sourceTree = ""; }; EA3D10905D9FEAFFDF80962DEAC1F5A6 /* Apollo-watchOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Apollo-watchOS-prefix.pch"; path = "../Apollo-watchOS/Apollo-watchOS-prefix.pch"; sourceTree = ""; }; - EA6730F3746DB2B7F105A89872FAEDD9 /* mel.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = mel.min.js; path = Pod/Assets/Highlighter/languages/mel.min.js; sourceTree = ""; }; + EA6730F3746DB2B7F105A89872FAEDD9 /* mel.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = mel.min.js; path = Pod/Assets/Highlighter/languages/mel.min.js; sourceTree = ""; }; EA6E8B8D4C013463EC40DF9AE15C4153 /* SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.xcconfig; sourceTree = ""; }; - EA8CA874B431870138707A18F3D56F0B /* lasso.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = lasso.min.js; path = Pod/Assets/Highlighter/languages/lasso.min.js; sourceTree = ""; }; + EA8CA874B431870138707A18F3D56F0B /* lasso.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = lasso.min.js; path = Pod/Assets/Highlighter/languages/lasso.min.js; sourceTree = ""; }; EABE3F3CA1F45E54EEBDCB1AFA67DBD6 /* MessageTextView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MessageTextView.swift; path = MessageViewController/MessageTextView.swift; sourceTree = ""; }; EB0C09BB96728492FA3216E28ACD7792 /* SnapKit.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SnapKit.modulemap; sourceTree = ""; }; EBB4E2F781F4A97074850FD65C78EC00 /* GraphQLSelectionSet.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLSelectionSet.swift; path = Sources/Apollo/GraphQLSelectionSet.swift; sourceTree = ""; }; EBD349901D21D044169FE088718F7DAD /* GitHawkRoutes-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GitHawkRoutes-umbrella.h"; sourceTree = ""; }; EBF9BE28E21C7436CFEA73E2BE768B29 /* V3PullRequestFilesRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3PullRequestFilesRequest.swift; path = GitHubAPI/V3PullRequestFilesRequest.swift; sourceTree = ""; }; - EC2FDE99BDFF481D40AFD80FC25C0C73 /* cos.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = cos.min.js; path = Pod/Assets/Highlighter/languages/cos.min.js; sourceTree = ""; }; + EC2FDE99BDFF481D40AFD80FC25C0C73 /* cos.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = cos.min.js; path = Pod/Assets/Highlighter/languages/cos.min.js; sourceTree = ""; }; ECB4C8BA97AFC33550C3C426303E5A54 /* NYTPhotoCaptionView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NYTPhotoCaptionView.h; path = NYTPhotoViewer/NYTPhotoCaptionView.h; sourceTree = ""; }; ECB7718500F2DA07E2878DE31EA824E0 /* NYTPhotoViewer.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = NYTPhotoViewer.xcconfig; sourceTree = ""; }; ECDA9085E587AF633EEE592393E59398 /* libcmark_gfm.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = libcmark_gfm.h; path = Source/cmark_gfm/include/libcmark_gfm.h; sourceTree = ""; }; - ED2DB96640D67D8B21BD440B23BA597C /* n1ql.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = n1ql.min.js; path = Pod/Assets/Highlighter/languages/n1ql.min.js; sourceTree = ""; }; + ED2DB96640D67D8B21BD440B23BA597C /* n1ql.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = n1ql.min.js; path = Pod/Assets/Highlighter/languages/n1ql.min.js; sourceTree = ""; }; ED2F0722566CEBC9613FC717AF4D0F73 /* Pods-FreetimeTests.testflight.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-FreetimeTests.testflight.xcconfig"; sourceTree = ""; }; - ED69FB03646423FC4F3D725C017558A2 /* references.c */ = {isa = PBXFileReference; includeInIndex = 1; name = references.c; path = Source/cmark_gfm/references.c; sourceTree = ""; }; - ED8F0D45B6431D1CDCA0737D7E9E1BE5 /* SwipeActionTransitioning.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeActionTransitioning.html; path = docs/Protocols/SwipeActionTransitioning.html; sourceTree = ""; }; + ED69FB03646423FC4F3D725C017558A2 /* references.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = references.c; path = Source/cmark_gfm/references.c; sourceTree = ""; }; + ED8F0D45B6431D1CDCA0737D7E9E1BE5 /* SwipeActionTransitioning.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeActionTransitioning.html; path = docs/Protocols/SwipeActionTransitioning.html; sourceTree = ""; }; ED93CBEAB3CB072E19BE41C65ED53CA3 /* SourceViewCorner.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SourceViewCorner.swift; path = ContextMenu/SourceViewCorner.swift; sourceTree = ""; }; EE0B51248BD286752C232B375CD697E5 /* Typealiases.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Typealiases.swift; path = Source/Typealiases.swift; sourceTree = ""; }; - EE0DA8A17A8C48B77E24AD249283438A /* houdini_html_u.c */ = {isa = PBXFileReference; includeInIndex = 1; name = houdini_html_u.c; path = Source/cmark_gfm/houdini_html_u.c; sourceTree = ""; }; + EE0DA8A17A8C48B77E24AD249283438A /* houdini_html_u.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = houdini_html_u.c; path = Source/cmark_gfm/houdini_html_u.c; sourceTree = ""; }; EE5CB4D4194F5CC35014A79DAB1596DC /* FLEXArgumentInputTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXArgumentInputTextView.h; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputTextView.h; sourceTree = ""; }; EE634DF2F4C5A83B436E47977896A0CB /* IGListAdapterUpdateListener.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListAdapterUpdateListener.h; path = Source/IGListAdapterUpdateListener.h; sourceTree = ""; }; - EEA1FC46F5E255ED5995BEEBDD34A142 /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SnapKit.framework; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - EEAA04F3D40870723C02B2B6F2E94A5A /* awk.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = awk.min.js; path = Pod/Assets/Highlighter/languages/awk.min.js; sourceTree = ""; }; + EEA1FC46F5E255ED5995BEEBDD34A142 /* SnapKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SnapKit.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EEAA04F3D40870723C02B2B6F2E94A5A /* awk.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = awk.min.js; path = Pod/Assets/Highlighter/languages/awk.min.js; sourceTree = ""; }; EEB6039780925049C927FB475575238F /* IGListDiffable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListDiffable.h; path = Source/Common/IGListDiffable.h; sourceTree = ""; }; EF82E0D5246514CCCF8068435EE7879A /* FLEXNetworkHistoryTableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkHistoryTableViewController.m; path = Classes/Network/FLEXNetworkHistoryTableViewController.m; sourceTree = ""; }; - EFDA3C2EEBD62273652E5C5A2AF5F6C0 /* syntax_extension.c */ = {isa = PBXFileReference; includeInIndex = 1; name = syntax_extension.c; path = Source/cmark_gfm/syntax_extension.c; sourceTree = ""; }; + EFDA3C2EEBD62273652E5C5A2AF5F6C0 /* syntax_extension.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = syntax_extension.c; path = Source/cmark_gfm/syntax_extension.c; sourceTree = ""; }; F01A00F798EDDD76D44EF853DBCCAC81 /* FLEXArgumentInputNumberView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXArgumentInputNumberView.m; path = Classes/Editing/ArgumentInputViews/FLEXArgumentInputNumberView.m; sourceTree = ""; }; F03B2B524204A5D11B0EC00EB91CF9DE /* GitHawkRoutes-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GitHawkRoutes-dummy.m"; sourceTree = ""; }; - F0624D35D7013C2856AF60B493E28284 /* zephir.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = zephir.min.js; path = Pod/Assets/Highlighter/languages/zephir.min.js; sourceTree = ""; }; + F0624D35D7013C2856AF60B493E28284 /* zephir.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = zephir.min.js; path = Pod/Assets/Highlighter/languages/zephir.min.js; sourceTree = ""; }; F0E8DE0B292FF623ACDF0BB2579CF5B6 /* DateAgo-watchOS.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; name = "DateAgo-watchOS.modulemap"; path = "../DateAgo-watchOS/DateAgo-watchOS.modulemap"; sourceTree = ""; }; F1489A59406EB7904B463975355A0CEF /* V3PullRequestCommentsRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3PullRequestCommentsRequest.swift; path = GitHubAPI/V3PullRequestCommentsRequest.swift; sourceTree = ""; }; F14AFE7EC4A7A1585A7CA392241FFFA6 /* SwipeCellKit-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SwipeCellKit-dummy.m"; sourceTree = ""; }; F17C686811A1C137393C85B0BE6F039C /* GitHubSession-watchOS-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GitHubSession-watchOS-umbrella.h"; path = "../GitHubSession-watchOS/GitHubSession-watchOS-umbrella.h"; sourceTree = ""; }; - F18211A6A17BD054D90E692B7DE5A70B /* capnproto.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = capnproto.min.js; path = Pod/Assets/Highlighter/languages/capnproto.min.js; sourceTree = ""; }; + F18211A6A17BD054D90E692B7DE5A70B /* capnproto.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = capnproto.min.js; path = Pod/Assets/Highlighter/languages/capnproto.min.js; sourceTree = ""; }; F1C447A20526C61282E37CAA056B87E9 /* ListDiffableBox.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ListDiffableBox.swift; path = Source/Swift/ListDiffableBox.swift; sourceTree = ""; }; - F2DF3F96A2CCA61764FA62B6951A0F8D /* erlang.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = erlang.min.js; path = Pod/Assets/Highlighter/languages/erlang.min.js; sourceTree = ""; }; - F2EDD09F9E7359BCA5C168B680E68F03 /* xquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = xquery.min.js; path = Pod/Assets/Highlighter/languages/xquery.min.js; sourceTree = ""; }; + F2DF3F96A2CCA61764FA62B6951A0F8D /* erlang.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = erlang.min.js; path = Pod/Assets/Highlighter/languages/erlang.min.js; sourceTree = ""; }; + F2EDD09F9E7359BCA5C168B680E68F03 /* xquery.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = xquery.min.js; path = Pod/Assets/Highlighter/languages/xquery.min.js; sourceTree = ""; }; F3DC2110322819BA04C74176D6605264 /* parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = parser.h; path = Source/cmark_gfm/include/parser.h; sourceTree = ""; }; F42FA9D5F4FE87639B14D2D89B9BAE71 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; F4402431F8F6150C0AFA5589722CC866 /* ContextMenu-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "ContextMenu-prefix.pch"; sourceTree = ""; }; @@ -3156,21 +3159,21 @@ F4F610B6E2922E1F1D8165D5C55C35EF /* IGListBindingSectionController+DebugDescription.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "IGListBindingSectionController+DebugDescription.m"; path = "Source/Internal/IGListBindingSectionController+DebugDescription.m"; sourceTree = ""; }; F53A939F06E0236F9F71D249E10ECBE7 /* FBSnapshotTestController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FBSnapshotTestController.m; path = FBSnapshotTestCase/FBSnapshotTestController.m; sourceTree = ""; }; F542E6AC1ED7D83B4287F2731331DADE /* MessageViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MessageViewController-dummy.m"; sourceTree = ""; }; - F554599D442A8822E7EA1B9EC6152865 /* advanced.html */ = {isa = PBXFileReference; includeInIndex = 1; name = advanced.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/advanced.html; sourceTree = ""; }; + F554599D442A8822E7EA1B9EC6152865 /* advanced.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = advanced.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/advanced.html; sourceTree = ""; }; F5BC7739098663C49C69BA2BFA5A5EC4 /* V3RepositoryNotificationRequest.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = V3RepositoryNotificationRequest.swift; path = GitHubAPI/V3RepositoryNotificationRequest.swift; sourceTree = ""; }; F5C59C3A9DFC16F8DEE68E60D220A02D /* Pods-FreetimeTests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-FreetimeTests-umbrella.h"; sourceTree = ""; }; - F5CDD435DA7879BC145B51BCA2FAAEB7 /* stylus.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = stylus.min.js; path = Pod/Assets/Highlighter/languages/stylus.min.js; sourceTree = ""; }; - F5E67E232BD83FF3407CBA41779B3F63 /* ceylon.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = ceylon.min.js; path = Pod/Assets/Highlighter/languages/ceylon.min.js; sourceTree = ""; }; + F5CDD435DA7879BC145B51BCA2FAAEB7 /* stylus.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = stylus.min.js; path = Pod/Assets/Highlighter/languages/stylus.min.js; sourceTree = ""; }; + F5E67E232BD83FF3407CBA41779B3F63 /* ceylon.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = ceylon.min.js; path = Pod/Assets/Highlighter/languages/ceylon.min.js; sourceTree = ""; }; F63224D9CADE5906AAE1414830745522 /* FLEXResources.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXResources.m; path = Classes/Utility/FLEXResources.m; sourceTree = ""; }; - F6490EE75F6EE966287643C488AD1099 /* grayscale.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = grayscale.min.css; path = Pod/Assets/styles/grayscale.min.css; sourceTree = ""; }; - F6576D4C12E25D935FB0C9BDEC533E4A /* css.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = css.min.js; path = Pod/Assets/Highlighter/languages/css.min.js; sourceTree = ""; }; + F6490EE75F6EE966287643C488AD1099 /* grayscale.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = grayscale.min.css; path = Pod/Assets/styles/grayscale.min.css; sourceTree = ""; }; + F6576D4C12E25D935FB0C9BDEC533E4A /* css.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = css.min.js; path = Pod/Assets/Highlighter/languages/css.min.js; sourceTree = ""; }; F69E01D6FA16FE4EBDF505948D3CBB8C /* NSString+IGListDiffable.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+IGListDiffable.h"; path = "Source/Common/NSString+IGListDiffable.h"; sourceTree = ""; }; - F706FA76ECEDE74B7A523E2554921729 /* vhdl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = vhdl.min.js; path = Pod/Assets/Highlighter/languages/vhdl.min.js; sourceTree = ""; }; - F739C655DBFF3A0F950C7FEA39278858 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = fr.lproj; path = Pod/Assets/fr.lproj; sourceTree = ""; }; + F706FA76ECEDE74B7A523E2554921729 /* vhdl.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = vhdl.min.js; path = Pod/Assets/Highlighter/languages/vhdl.min.js; sourceTree = ""; }; + F739C655DBFF3A0F950C7FEA39278858 /* fr.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = fr.lproj; path = Pod/Assets/fr.lproj; sourceTree = ""; }; F74E9703912D805CBEE58B4F3F5508C3 /* TUSafariActivity.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = TUSafariActivity.modulemap; sourceTree = ""; }; - F750A22C66B6EF0195CC1359C48B6D82 /* clean.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = clean.min.js; path = Pod/Assets/Highlighter/languages/clean.min.js; sourceTree = ""; }; + F750A22C66B6EF0195CC1359C48B6D82 /* clean.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = clean.min.js; path = Pod/Assets/Highlighter/languages/clean.min.js; sourceTree = ""; }; F7A2A2DE773932C8FFC9153731FD5701 /* FBSnapshotTestCase-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "FBSnapshotTestCase-umbrella.h"; sourceTree = ""; }; - F7B928563537AD172656D0B70BEE46DD /* ScaleTransition.html */ = {isa = PBXFileReference; includeInIndex = 1; name = ScaleTransition.html; path = docs/Structs/ScaleTransition.html; sourceTree = ""; }; + F7B928563537AD172656D0B70BEE46DD /* ScaleTransition.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = ScaleTransition.html; path = docs/Structs/ScaleTransition.html; sourceTree = ""; }; F7E56C6C62B10039E9F377394764C8BE /* FLEXMethodCallingViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXMethodCallingViewController.m; path = Classes/Editing/FLEXMethodCallingViewController.m; sourceTree = ""; }; F8439F67352C18FD3EEFC57DED4269B2 /* ContextMenu.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ContextMenu.swift; path = ContextMenu/ContextMenu.swift; sourceTree = ""; }; F8AA822DC24B41FFECD162D7F17CC708 /* mention.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = mention.h; path = Source/cmark_gfm/include/mention.h; sourceTree = ""; }; @@ -3185,32 +3188,32 @@ FA270F1550A0BB8D960C6A980066B47C /* IGListGenericSectionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IGListGenericSectionController.m; path = Source/IGListGenericSectionController.m; sourceTree = ""; }; FA29948D113F30EED97139F02D899E0E /* GraphQLResponseGenerator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GraphQLResponseGenerator.swift; path = Sources/Apollo/GraphQLResponseGenerator.swift; sourceTree = ""; }; FA795A956D1FF6FE881CB07E785F4858 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = "../StringHelpers-watchOS/Info.plist"; sourceTree = ""; }; - FA8236932529055A8F5B8030060F8A6D /* iterator.c */ = {isa = PBXFileReference; includeInIndex = 1; name = iterator.c; path = Source/cmark_gfm/iterator.c; sourceTree = ""; }; - FA9A10BDE00FFBAF4A90A507464A2A8F /* dracula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = dracula.min.css; path = Pod/Assets/styles/dracula.min.css; sourceTree = ""; }; - FAC419AC6F7097E5FC543101D2AB15AA /* SwipeAction.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeAction.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeAction.html; sourceTree = ""; }; + FA8236932529055A8F5B8030060F8A6D /* iterator.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = iterator.c; path = Source/cmark_gfm/iterator.c; sourceTree = ""; }; + FA9A10BDE00FFBAF4A90A507464A2A8F /* dracula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = dracula.min.css; path = Pod/Assets/styles/dracula.min.css; sourceTree = ""; }; + FAC419AC6F7097E5FC543101D2AB15AA /* SwipeAction.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = SwipeAction.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Classes/SwipeAction.html; sourceTree = ""; }; FAE23AFAA5DFB3329A56FB50BC06CCFD /* FLEXFileBrowserFileOperationController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXFileBrowserFileOperationController.m; path = Classes/GlobalStateExplorers/FLEXFileBrowserFileOperationController.m; sourceTree = ""; }; - FAEAC2FF07DEAA5789E813AA388320D0 /* mention.c */ = {isa = PBXFileReference; includeInIndex = 1; name = mention.c; path = Source/cmark_gfm/mention.c; sourceTree = ""; }; + FAEAC2FF07DEAA5789E813AA388320D0 /* mention.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = mention.c; path = Source/cmark_gfm/mention.c; sourceTree = ""; }; FB069301D8B93649AE1D82FFC74B77FC /* GitHubSession-watchOS-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "GitHubSession-watchOS-prefix.pch"; path = "../GitHubSession-watchOS/GitHubSession-watchOS-prefix.pch"; sourceTree = ""; }; - FBC4502937CC5694C079D0F9CE8FC3D1 /* csp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = csp.min.js; path = Pod/Assets/Highlighter/languages/csp.min.js; sourceTree = ""; }; + FBC4502937CC5694C079D0F9CE8FC3D1 /* csp.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = csp.min.js; path = Pod/Assets/Highlighter/languages/csp.min.js; sourceTree = ""; }; FC02C7A6319B007785637DCAB4450D16 /* NYTPhotoTransitionController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NYTPhotoTransitionController.m; path = NYTPhotoViewer/NYTPhotoTransitionController.m; sourceTree = ""; }; - FC04DBC263C5678AC43751D53E012F3D /* Guides.html */ = {isa = PBXFileReference; includeInIndex = 1; name = Guides.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Guides.html; sourceTree = ""; }; - FC84C7FE17D4F036ACD8FAFE98B21B3C /* Localizable.stringsdict */ = {isa = PBXFileReference; includeInIndex = 1; name = Localizable.stringsdict; path = DateAgo/Localizable.stringsdict; sourceTree = ""; }; + FC04DBC263C5678AC43751D53E012F3D /* Guides.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = Guides.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/Guides.html; sourceTree = ""; }; + FC84C7FE17D4F036ACD8FAFE98B21B3C /* Localizable.stringsdict */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.stringsdict; name = Localizable.stringsdict; path = DateAgo/Localizable.stringsdict; sourceTree = ""; }; FCB018DA861195C989E4B5742813F47F /* StyledText.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StyledText.swift; path = Source/StyledText.swift; sourceTree = ""; }; - FD167C4F716690C693291EA1CD3163AC /* atelier-seaside-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = "atelier-seaside-light.min.css"; path = "Pod/Assets/styles/atelier-seaside-light.min.css"; sourceTree = ""; }; - FD2C00A380CE3B7CD944D62D23AB7990 /* darkula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; name = darkula.min.css; path = Pod/Assets/styles/darkula.min.css; sourceTree = ""; }; - FD464522E363FB622F0C138C9F7B1610 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; name = index.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/index.html; sourceTree = ""; }; - FD7307762F9C96E92030D04E6CA9546F /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; name = it.lproj; path = Pod/Assets/it.lproj; sourceTree = ""; }; + FD167C4F716690C693291EA1CD3163AC /* atelier-seaside-light.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = "atelier-seaside-light.min.css"; path = "Pod/Assets/styles/atelier-seaside-light.min.css"; sourceTree = ""; }; + FD2C00A380CE3B7CD944D62D23AB7990 /* darkula.min.css */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.css; name = darkula.min.css; path = Pod/Assets/styles/darkula.min.css; sourceTree = ""; }; + FD464522E363FB622F0C138C9F7B1610 /* index.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html.documentation; name = index.html; path = docs/docsets/SwipeCellKit.docset/Contents/Resources/Documents/index.html; sourceTree = ""; }; + FD7307762F9C96E92030D04E6CA9546F /* it.lproj */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder; name = it.lproj; path = Pod/Assets/it.lproj; sourceTree = ""; }; FD7BE6ADA821B1D6110EC67704A6EFF4 /* SquawkView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SquawkView.swift; path = Source/SquawkView.swift; sourceTree = ""; }; - FDEA849012CD64553848F33A0176F54D /* dsconfig.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = dsconfig.min.js; path = Pod/Assets/Highlighter/languages/dsconfig.min.js; sourceTree = ""; }; + FDEA849012CD64553848F33A0176F54D /* dsconfig.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = dsconfig.min.js; path = Pod/Assets/Highlighter/languages/dsconfig.min.js; sourceTree = ""; }; FDF097B155A09E752E73560244489FA5 /* Processing.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Processing.swift; path = GitHubAPI/Processing.swift; sourceTree = ""; }; FE25C225B16BC1050C25C070892497D4 /* FLEXKeyboardShortcutManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FLEXKeyboardShortcutManager.h; path = Classes/Utility/FLEXKeyboardShortcutManager.h; sourceTree = ""; }; FE6F8260C4BA00C952E45BD40C830ADC /* FLEXNetworkObserver.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXNetworkObserver.m; path = Classes/Network/PonyDebugger/FLEXNetworkObserver.m; sourceTree = ""; }; - FE963A373D5C104B171E2FF8B8D5D998 /* smalltalk.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = smalltalk.min.js; path = Pod/Assets/Highlighter/languages/smalltalk.min.js; sourceTree = ""; }; + FE963A373D5C104B171E2FF8B8D5D998 /* smalltalk.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = smalltalk.min.js; path = Pod/Assets/Highlighter/languages/smalltalk.min.js; sourceTree = ""; }; FF47AC5D7BFDB55BEE5FEDA8C11F0FE6 /* IGListBindingSectionControllerDataSource.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IGListBindingSectionControllerDataSource.h; path = Source/IGListBindingSectionControllerDataSource.h; sourceTree = ""; }; - FFBF15EAE80203428655644A50253657 /* accesslog.min.js */ = {isa = PBXFileReference; includeInIndex = 1; name = accesslog.min.js; path = Pod/Assets/Highlighter/languages/accesslog.min.js; sourceTree = ""; }; + FFBF15EAE80203428655644A50253657 /* accesslog.min.js */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.javascript; name = accesslog.min.js; path = Pod/Assets/Highlighter/languages/accesslog.min.js; sourceTree = ""; }; FFDDF2C6F41903FE66CD0F952754E830 /* GitHubAPI-watchOS.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "GitHubAPI-watchOS.xcconfig"; path = "../GitHubAPI-watchOS/GitHubAPI-watchOS.xcconfig"; sourceTree = ""; }; FFE043BC1C12D41640E34F7588EFC69A /* FLEXTableContentViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FLEXTableContentViewController.m; path = Classes/GlobalStateExplorers/DatabaseBrowser/FLEXTableContentViewController.m; sourceTree = ""; }; - FFFBCAA591C2E8965123AD58CD7E07D5 /* SwipeTransitionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; name = SwipeTransitionStyle.html; path = docs/Enums/SwipeTransitionStyle.html; sourceTree = ""; }; + FFFBCAA591C2E8965123AD58CD7E07D5 /* SwipeTransitionStyle.html */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.html; name = SwipeTransitionStyle.html; path = docs/Enums/SwipeTransitionStyle.html; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -3637,7 +3640,6 @@ A1F65BE1AEA7DAD6A3D6670C6554F7E8 /* NSString+HTMLString.swift */, EC5AFB80F1FF597F78EAB2983AB955BE /* Support Files */, ); - name = HTMLString; path = HTMLString; sourceTree = ""; }; @@ -3680,7 +3682,6 @@ 51255042F8AEBE5081C3887AEA48E91E /* UILayoutSupport+Extensions.swift */, 89886CE8077E0934A5861C7560E2726A /* Support Files */, ); - name = SnapKit; path = SnapKit; sourceTree = ""; }; @@ -3706,7 +3707,6 @@ E873822122E9802951CBD44244F39215 /* Validation.swift */, D714A14D0A6ACDDE7D9840ACF78089FF /* Support Files */, ); - name = Alamofire; path = Alamofire; sourceTree = ""; }; @@ -3721,7 +3721,6 @@ isa = PBXGroup; children = ( ); - name = SwiftLint; path = SwiftLint; sourceTree = ""; }; @@ -3757,7 +3756,6 @@ B0D1573FC04462B1155593282F0DB204 /* Resources */, 89C6CEECDCB2AF0496BD88A956FDBBCB /* Support Files */, ); - name = Highlightr; path = Highlightr; sourceTree = ""; }; @@ -3794,7 +3792,6 @@ 48E0372CFCE5AB5DBBADFD00ADFCD8FB /* URL+Routable.swift */, 6DBFC6B30F0118B1225879E0741403E4 /* Support Files */, ); - name = GitHawkRoutes; path = GitHawkRoutes; sourceTree = ""; }; @@ -3822,7 +3819,6 @@ BA9754B491CB4AF2F3AC3AEBF7680DA6 /* UIScreen+Static.swift */, F591E8ACE3906B616CD6E01001D74883 /* Support Files */, ); - name = StyledTextKit; path = StyledTextKit; sourceTree = ""; }; @@ -3916,7 +3912,6 @@ 52C2CE978EB53E3752A90A4D980330B6 /* xml.c */, 753CBB209EEBCB5A64BC432AD2625BC3 /* Support Files */, ); - name = "cmark-gfm-swift"; path = "cmark-gfm-swift"; sourceTree = ""; }; @@ -4030,7 +4025,6 @@ E8C0BD24AD485A98DA7D515C27D7186B /* FLAnimatedImageView.m */, CF044F2014F6880F5C5ED84237D3761D /* Support Files */, ); - name = FLAnimatedImage; path = FLAnimatedImage; sourceTree = ""; }; @@ -4235,7 +4229,6 @@ 33EA214EC931C0F5B39F780482D07E8F /* FLEXWindow.m */, 598E546677A44C9B6A3AAED97A719C4F /* Support Files */, ); - name = FLEX; path = FLEX; sourceTree = ""; }; @@ -4261,7 +4254,6 @@ DEB69111241ED404D9FCA36E87577E30 /* NetworkActivityIndicatorManager.swift */, FABD6208C39776945B362084487C6369 /* Support Files */, ); - name = AlamofireNetworkActivityIndicator; path = AlamofireNetworkActivityIndicator; sourceTree = ""; }; @@ -4284,7 +4276,6 @@ 66E0FA519042094814878231E8E7751D /* UIView+iOS11.swift */, B92B282A7E12F4F799058FF4CC183275 /* Support Files */, ); - name = MessageViewController; path = MessageViewController; sourceTree = ""; }; @@ -4433,7 +4424,6 @@ 2DCD2340CEB63D26E508AFBE72ADE87A /* UIViewController+SearchChildren.swift */, 969975A9886F9D968343F150B61D29DA /* Support Files */, ); - name = Squawk; path = Squawk; sourceTree = ""; }; @@ -4444,7 +4434,6 @@ 64A52A5DE7FB89BF70529E4FA82E8CA2 /* Resources */, 470C3764C67CC0C57B58C937494215B1 /* Support Files */, ); - name = DropdownTitleView; path = DropdownTitleView; sourceTree = ""; }; @@ -4476,7 +4465,6 @@ 021341BF8B29B2ED378EAA26F2B0C5E2 /* Crashlytics.h */, 84F70A3DF5060292A8970FA2DCD5230F /* Frameworks */, ); - name = Crashlytics; path = Crashlytics; sourceTree = ""; }; @@ -4565,7 +4553,6 @@ AC9E019122C6AAA24F4D186E7448CB25 /* GIF */, 2499F8E8C3F19EE87E4EE044FF4C2A3A /* Support Files */, ); - name = SDWebImage; path = SDWebImage; sourceTree = ""; }; @@ -4664,7 +4651,6 @@ 139E95B09DA5D3CDD9065A632ACC59F7 /* UIViewController+Extensions.swift */, 54A9113359840B9EC963E1835BCD9764 /* Support Files */, ); - name = ContextMenu; path = ContextMenu; sourceTree = ""; }; @@ -4703,7 +4689,6 @@ 8CB4DE61FA1C3699C6CDD45014365A6E /* Resources */, E70DC0BDE57599112D843CB70ABB9BF1 /* Support Files */, ); - name = XLPagerTabStrip; path = XLPagerTabStrip; sourceTree = ""; }; @@ -4773,7 +4758,6 @@ 1084F89741565A300C950409CC92E1E0 /* UIAlertAction+Image.swift */, FC319E2F5078237991C80DB583DCD5EE /* Support Files */, ); - name = ImageAlertAction; path = ImageAlertAction; sourceTree = ""; }; @@ -5055,7 +5039,6 @@ 3A4AA5B8DD8310A300E465D3D7E55E1C /* FlatCache.swift */, FD0BA59A60B6D56529427664E61667B8 /* Support Files */, ); - name = FlatCache; path = FlatCache; sourceTree = ""; }; @@ -5106,6 +5089,7 @@ isa = PBXGroup; children = ( C4AE2060D024C6B053AA229D4077844C /* Alamofire+GitHubAPI.swift */, + BDCEBE1421E2440200D31677 /* V3EditIssueTitleRequest.swift */, 78DE6AC19971B3FF56630DEF219A8E83 /* Client.swift */, 916894F50B121D757F8370896BDA2D9F /* ClientError.swift */, 898F4811A1A34DD8BDD289711DCC935A /* ConfiguredNetworkers.swift */, @@ -5330,7 +5314,6 @@ E6FDD773478452BCD18C157341BEE9CF /* Resources */, C43403794ABCACEC1FB178878FD50738 /* Support Files */, ); - name = TUSafariActivity; path = TUSafariActivity; sourceTree = ""; }; @@ -5414,7 +5397,6 @@ D5764D9B4063830C6D0B60B5BB23F27D /* standard */, 430C64ACE3A743D8FFADFE0B6F977E98 /* Support Files */, ); - name = FMDB; path = FMDB; sourceTree = ""; }; @@ -5482,7 +5464,6 @@ 4F89EE2A34FEFF3B097D30E15B9C33CB /* Fabric.h */, EA4D39BC919F4BF515AD3C217BC09AC6 /* Frameworks */, ); - name = Fabric; path = Fabric; sourceTree = ""; }; @@ -5493,7 +5474,6 @@ B8E72E9D340F4362AD6CD2708518B24D /* Support Files */, E4D60126AA7EF0FBA03C282A982A679C /* SwiftSupport */, ); - name = FBSnapshotTestCase; path = FBSnapshotTestCase; sourceTree = ""; }; @@ -5715,7 +5695,6 @@ 3FB7FC06F611F2D04EF48FF983B0821C /* Support Files */, EF38F652B7ED00207FC378AF27673DBF /* Swift */, ); - name = IGListKit; path = IGListKit; sourceTree = ""; }; @@ -5781,7 +5760,6 @@ 2465D12F11379F7F949ADCD1D090ED59 /* Core */, 546C60F0521C0C2FF188A6921E2B45F7 /* Support Files */, ); - name = NYTPhotoViewer; path = NYTPhotoViewer; sourceTree = ""; }; @@ -5833,7 +5811,6 @@ CE4B92ACF429EF7551CC70D3BF747EC5 /* Core */, E7EDBE57A5C7E5056505232FB69235EF /* Support Files */, ); - name = Apollo; path = Apollo; sourceTree = ""; }; @@ -8370,6 +8347,7 @@ files = ( C3806A5A046DA077D4BBC1062227CC94 /* Alamofire+GitHubAPI.swift in Sources */, 065506897170DC41EB6A620DA81F5E5A /* Client.swift in Sources */, + BDCEBE1621E2440200D31677 /* V3EditIssueTitleRequest.swift in Sources */, 976C7F700C0F0DBCCBE519F42AA8FC56 /* ClientError.swift in Sources */, 92076D84D5C13582BF67EAEE6FEF892E /* ConfiguredNetworkers.swift in Sources */, CAEB69EBAF70E3301C0F18E3AC5E9657 /* GitHubAccessTokenRequest.swift in Sources */, @@ -8604,6 +8582,7 @@ files = ( 5DEB623B16E2AB6F0C15F67F9E1E999A /* Alamofire+GitHubAPI.swift in Sources */, 92BA46A42D1B6BA77954C966F055BBF1 /* Client.swift in Sources */, + BDCEBE1521E2440200D31677 /* V3EditIssueTitleRequest.swift in Sources */, E40CE1B6E6752DB46472BED9DAF1E1E0 /* ClientError.swift in Sources */, C8AB3CDBD3AB3AD7406ADCAC1859B2B9 /* ConfiguredNetworkers.swift in Sources */, B70AC940B602D696FC0A4C7C138397E1 /* GitHubAccessTokenRequest.swift in Sources */, @@ -9348,8 +9327,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9382,8 +9360,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -9448,8 +9425,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9549,8 +9525,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9617,8 +9592,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9651,8 +9625,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.1; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9685,8 +9658,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9751,8 +9723,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -9804,8 +9775,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9838,8 +9808,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -9876,8 +9845,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -9910,8 +9878,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -10079,8 +10046,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -10180,8 +10146,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -10246,8 +10211,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -10343,8 +10307,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -10409,8 +10372,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -10459,8 +10421,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -10493,8 +10454,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -10661,8 +10621,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -10699,8 +10658,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -10990,8 +10948,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11024,8 +10981,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11106,8 +11062,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11221,8 +11176,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11271,8 +11225,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11306,8 +11259,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11378,8 +11330,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = watchos; SKIP_INSTALL = YES; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -11541,8 +11492,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11575,8 +11525,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11831,8 +11780,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11866,8 +11814,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -11933,8 +11880,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12002,8 +11948,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -12069,8 +12014,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12104,8 +12048,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12138,8 +12081,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12172,8 +12114,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12206,8 +12147,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -12241,8 +12181,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12275,8 +12214,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12312,8 +12250,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = watchos; SKIP_INSTALL = YES; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -12346,8 +12283,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12380,8 +12316,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12462,8 +12397,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.1; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12500,8 +12434,7 @@ PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; @@ -12533,8 +12466,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12664,8 +12596,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -12732,8 +12663,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12821,8 +12751,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -12887,8 +12816,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13002,8 +12930,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13036,8 +12963,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -13071,8 +12997,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13197,8 +13122,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13249,8 +13173,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.2; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13349,8 +13272,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13415,8 +13337,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13449,8 +13370,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -13484,8 +13404,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -13519,8 +13438,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -13588,8 +13506,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES; @@ -13655,8 +13572,7 @@ SDKROOT = iphoneos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; @@ -13689,8 +13605,7 @@ SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_VERSION = 4.0; TARGETED_DEVICE_FAMILY = 4; VALIDATE_PRODUCT = YES;