gitextract_izcrtqob/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Gemfile ├── Jenkinsfile ├── Podfile ├── README.md ├── RealmBrowser/ │ ├── Application/ │ │ ├── RLMApplicationDelegate+CrashReporting.h │ │ ├── RLMApplicationDelegate+CrashReporting.m │ │ ├── RLMApplicationDelegate.h │ │ └── RLMApplicationDelegate.m │ ├── Controllers/ │ │ ├── RLMDocumentController.h │ │ ├── RLMDocumentController.m │ │ ├── RLMEncryptionKeyWindowController.h │ │ ├── RLMEncryptionKeyWindowController.m │ │ ├── RLMExportIndicatorWindowController.h │ │ ├── RLMExportIndicatorWindowController.m │ │ ├── RLMInstanceTableViewController.h │ │ ├── RLMInstanceTableViewController.m │ │ ├── RLMObjectLinkSelectionViewController.h │ │ ├── RLMObjectLinkSelectionViewController.m │ │ ├── RLMRealmBrowserWindowController.h │ │ ├── RLMRealmBrowserWindowController.m │ │ ├── RLMTypeOutlineViewController.h │ │ ├── RLMTypeOutlineViewController.m │ │ ├── RLMViewController.h │ │ └── RLMViewController.m │ ├── Models/ │ │ ├── RLMArrayNavigationState.h │ │ ├── RLMArrayNavigationState.m │ │ ├── RLMArrayNode.h │ │ ├── RLMArrayNode.m │ │ ├── RLMClassNode.h │ │ ├── RLMClassNode.m │ │ ├── RLMClassProperty.h │ │ ├── RLMClassProperty.m │ │ ├── RLMDocument.h │ │ ├── RLMDocument.m │ │ ├── RLMNavigationStack.h │ │ ├── RLMNavigationStack.m │ │ ├── RLMNavigationState.h │ │ ├── RLMNavigationState.m │ │ ├── RLMObjectNode.h │ │ ├── RLMObjectNode.m │ │ ├── RLMQueryNavigationState.h │ │ ├── RLMQueryNavigationState.m │ │ ├── RLMRealmNode.h │ │ ├── RLMRealmNode.m │ │ ├── RLMRealmOutlineNode.h │ │ ├── RLMResultsNode.h │ │ ├── RLMResultsNode.m │ │ ├── RLMTableColumn.h │ │ ├── RLMTableColumn.m │ │ ├── RLMTypeNode.h │ │ └── RLMTypeNode.m │ ├── Resources/ │ │ ├── Documents/ │ │ │ └── en.lproj/ │ │ │ └── Credits.rtf │ │ ├── Icons/ │ │ │ └── RealmFileIcon.icns │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Mavericks10.9.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── RealmLocked.imageset/ │ │ │ │ └── Contents.json │ │ │ └── RealmUnlocked.imageset/ │ │ │ └── Contents.json │ │ └── UI/ │ │ ├── Base.lproj/ │ │ │ ├── EncryptionKeyWindow.xib │ │ │ ├── MainMenu.xib │ │ │ └── RLMDocument.xib │ │ ├── RLMExportIndicatorWindowController.xib │ │ └── RLMObjectLinkSelectionViewController.xib │ ├── Support/ │ │ ├── NSColor+ByteSizeFactory.h │ │ ├── NSColor+ByteSizeFactory.m │ │ ├── RLMBrowserConstants.h │ │ ├── RLMBrowserConstants.m │ │ ├── RLMDescriptions.h │ │ ├── RLMDescriptions.m │ │ ├── RLMModelExporter.h │ │ ├── RLMModelExporter.m │ │ ├── RLMTestDataGenerator.h │ │ ├── RLMTestDataGenerator.m │ │ ├── RLMUtils.h │ │ ├── RLMUtils.m │ │ ├── TestClasses.h │ │ └── TestClasses.m │ ├── Supporting Files/ │ │ ├── Realm Browser.entitlements │ │ ├── RealmBrowser-Info.plist │ │ ├── RealmBrowser-Prefix.pch │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ └── Views/ │ ├── RLMBadgeTableCellView.h │ ├── RLMBadgeTableCellView.m │ ├── RLMBasicTableCellView.h │ ├── RLMBasicTableCellView.m │ ├── RLMBoolTableCellView.h │ ├── RLMBoolTableCellView.m │ ├── RLMImageTableCellView.h │ ├── RLMImageTableCellView.m │ ├── RLMLinkTableCellView.h │ ├── RLMLinkTableCellView.m │ ├── RLMNumberTableCellView.h │ ├── RLMNumberTableCellView.m │ ├── RLMOptionalBoolTableCellView.h │ ├── RLMOptionalBoolTableCellView.m │ ├── RLMSidebarTableCellView.h │ ├── RLMSidebarTableCellView.m │ ├── RLMTableCellView.h │ ├── RLMTableCellView.m │ ├── RLMTableHeaderCell.h │ ├── RLMTableHeaderCell.m │ ├── RLMTableView.h │ └── RLMTableView.m ├── RealmBrowser.xcodeproj/ │ ├── project.pbxproj │ └── xcshareddata/ │ └── xcschemes/ │ └── Realm Browser.xcscheme ├── RealmBrowserSync/ │ ├── Controllers/ │ │ ├── RLMAccessTokenCredentialViewController.h │ │ ├── RLMAccessTokenCredentialViewController.m │ │ ├── RLMCloudKitCredentialViewController.h │ │ ├── RLMCloudKitCredentialViewController.m │ │ ├── RLMConnectToServerWindowController.h │ │ ├── RLMConnectToServerWindowController.m │ │ ├── RLMConnectionIndicatorWindowController.h │ │ ├── RLMConnectionIndicatorWindowController.m │ │ ├── RLMCredentialViewController+Private.h │ │ ├── RLMCredentialViewController.h │ │ ├── RLMCredentialViewController.m │ │ ├── RLMCredentialsViewController.h │ │ ├── RLMCredentialsViewController.m │ │ ├── RLMFacebookCredentialViewController.h │ │ ├── RLMFacebookCredentialViewController.m │ │ ├── RLMGoogleCredentialViewController.h │ │ ├── RLMGoogleCredentialViewController.m │ │ ├── RLMLoginWindowController.h │ │ ├── RLMLoginWindowController.m │ │ ├── RLMOpenSyncURLWindowController.h │ │ ├── RLMOpenSyncURLWindowController.m │ │ ├── RLMSyncServerBrowserWindowController.h │ │ ├── RLMSyncServerBrowserWindowController.m │ │ ├── RLMUsernameCredentialViewController.h │ │ ├── RLMUsernameCredentialViewController.m │ │ ├── RLMWelcomeWindowController.h │ │ └── RLMWelcomeWindowController.m │ ├── Library/ │ │ ├── NSView+RLMExtensions.h │ │ ├── NSView+RLMExtensions.m │ │ ├── RLMKeychainInfo+RLMSyncCredentials.h │ │ ├── RLMKeychainInfo+RLMSyncCredentials.m │ │ ├── RLMKeychainInfo.h │ │ ├── RLMKeychainInfo.m │ │ ├── RLMKeychainStore.h │ │ ├── RLMKeychainStore.m │ │ ├── RLMSyncURLValueTransformer.h │ │ ├── RLMSyncURLValueTransformer.m │ │ ├── RLMSyncUtils.h │ │ ├── RLMSyncUtils.m │ │ ├── RLMWindowController.h │ │ └── RLMWindowController.m │ └── Resources/ │ ├── AccessTokenCredentialView.xib │ ├── CloudKitCredentialView.xib │ ├── ConnectToServerWindow.xib │ ├── ConnectionIndicatorWindow.xib │ ├── CredentialsView.xib │ ├── FacebookCredentialView.xib │ ├── GoogleCredentialView.xib │ ├── LoginWindow.xib │ ├── OpenSyncURLWindow.xib │ ├── SyncServerBrowserWindow.xib │ ├── UsernameCredentialView.xib │ └── WelcomeWindow.xib ├── RealmBrowserTests/ │ ├── RLMTestObjects.h │ ├── RLMTestObjects.m │ ├── RealmBrowserTests.m │ └── Supporting Files/ │ ├── RealmBrowserTests-Info.plist │ └── en.lproj/ │ └── InfoPlist.strings └── fastlane/ ├── Appfile ├── Fastfile └── README.md