gitextract_n99e6kjn/ ├── .dir-locals.el ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug.yml │ │ ├── config.yml │ │ └── feature.yml │ └── workflows/ │ ├── build-binaries.yml │ ├── build-pr.yml │ ├── check-changelog.yml │ ├── master-push.yml │ └── publish-release.yml ├── .gitignore ├── .ruby-version ├── .swiftlint.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Configuration/ │ ├── Base.xcconfig │ ├── Debug.xcconfig │ ├── Realm/ │ │ ├── PrivateSymbols.txt │ │ ├── Realm.xcconfig │ │ └── Tests.xcconfig │ ├── RealmSwift/ │ │ ├── RealmSwift.xcconfig │ │ └── Tests.xcconfig │ ├── Release.xcconfig │ ├── Static.xcconfig │ ├── SwiftUITestHost.xcconfig │ ├── SwiftUITests.xcconfig │ ├── TestBase.xcconfig │ └── TestHost.xcconfig ├── Gemfile ├── LICENSE ├── Package.swift ├── README.md ├── Realm/ │ ├── PrivacyInfo.xcprivacy │ ├── RLMAccessor.h │ ├── RLMAccessor.hpp │ ├── RLMAccessor.mm │ ├── RLMArray.h │ ├── RLMArray.mm │ ├── RLMArray_Private.h │ ├── RLMArray_Private.hpp │ ├── RLMAsyncTask.h │ ├── RLMAsyncTask.mm │ ├── RLMAsyncTask_Private.h │ ├── RLMClassInfo.hpp │ ├── RLMClassInfo.mm │ ├── RLMCollection.h │ ├── RLMCollection.mm │ ├── RLMCollection_Private.h │ ├── RLMCollection_Private.hpp │ ├── RLMConstants.h │ ├── RLMConstants.m │ ├── RLMDecimal128.h │ ├── RLMDecimal128.mm │ ├── RLMDecimal128_Private.hpp │ ├── RLMDictionary.h │ ├── RLMDictionary.mm │ ├── RLMDictionary_Private.h │ ├── RLMDictionary_Private.hpp │ ├── RLMEmbeddedObject.h │ ├── RLMEmbeddedObject.mm │ ├── RLMError.h │ ├── RLMError.mm │ ├── RLMError_Private.hpp │ ├── RLMGeospatial.h │ ├── RLMGeospatial.mm │ ├── RLMGeospatial_Private.hpp │ ├── RLMLogger.h │ ├── RLMLogger.mm │ ├── RLMLogger_Private.h │ ├── RLMManagedArray.mm │ ├── RLMManagedDictionary.mm │ ├── RLMManagedSet.mm │ ├── RLMMigration.h │ ├── RLMMigration.mm │ ├── RLMMigration_Private.h │ ├── RLMObject.h │ ├── RLMObject.mm │ ├── RLMObjectBase.h │ ├── RLMObjectBase.mm │ ├── RLMObjectBase_Dynamic.h │ ├── RLMObjectBase_Private.h │ ├── RLMObjectId.h │ ├── RLMObjectId.mm │ ├── RLMObjectId_Private.hpp │ ├── RLMObjectSchema.h │ ├── RLMObjectSchema.mm │ ├── RLMObjectSchema_Private.h │ ├── RLMObjectSchema_Private.hpp │ ├── RLMObjectStore.h │ ├── RLMObjectStore.mm │ ├── RLMObject_Private.h │ ├── RLMObject_Private.hpp │ ├── RLMObservation.hpp │ ├── RLMObservation.mm │ ├── RLMPredicateUtil.hpp │ ├── RLMPredicateUtil.mm │ ├── RLMPrefix.h │ ├── RLMProperty.h │ ├── RLMProperty.mm │ ├── RLMProperty_Private.h │ ├── RLMProperty_Private.hpp │ ├── RLMQueryUtil.hpp │ ├── RLMQueryUtil.mm │ ├── RLMRealm.h │ ├── RLMRealm.mm │ ├── RLMRealmConfiguration.h │ ├── RLMRealmConfiguration.mm │ ├── RLMRealmConfiguration_Private.h │ ├── RLMRealmConfiguration_Private.hpp │ ├── RLMRealmUtil.hpp │ ├── RLMRealmUtil.mm │ ├── RLMRealm_Dynamic.h │ ├── RLMRealm_Private.h │ ├── RLMRealm_Private.hpp │ ├── RLMResults.h │ ├── RLMResults.mm │ ├── RLMResults_Private.h │ ├── RLMResults_Private.hpp │ ├── RLMScheduler.h │ ├── RLMScheduler.mm │ ├── RLMSchema.h │ ├── RLMSchema.mm │ ├── RLMSchema_Private.h │ ├── RLMSchema_Private.hpp │ ├── RLMSectionedResults.h │ ├── RLMSectionedResults.mm │ ├── RLMSectionedResults_Private.hpp │ ├── RLMSet.h │ ├── RLMSet.mm │ ├── RLMSet_Private.h │ ├── RLMSet_Private.hpp │ ├── RLMSwiftBridgingHeader.h │ ├── RLMSwiftCollectionBase.h │ ├── RLMSwiftCollectionBase.mm │ ├── RLMSwiftObject.h │ ├── RLMSwiftProperty.h │ ├── RLMSwiftSupport.h │ ├── RLMSwiftSupport.m │ ├── RLMSwiftValueStorage.h │ ├── RLMSwiftValueStorage.mm │ ├── RLMThreadSafeReference.h │ ├── RLMThreadSafeReference.mm │ ├── RLMThreadSafeReference_Private.hpp │ ├── RLMUUID.mm │ ├── RLMUUID_Private.hpp │ ├── RLMUtil.hpp │ ├── RLMUtil.mm │ ├── RLMValue.h │ ├── RLMValue.mm │ ├── Realm-Info.plist │ ├── Realm.h │ ├── Realm.modulemap │ ├── Swift/ │ │ └── RLMSupport.swift │ ├── TestUtils/ │ │ ├── RLMChildProcessEnvironment.m │ │ ├── RLMMultiProcessTestCase.m │ │ ├── RLMTestCase.m │ │ ├── RLMTestObjects.m │ │ ├── RealmTestSupport.h │ │ ├── TestUtils.mm │ │ └── include/ │ │ ├── RLMAssertions.h │ │ ├── RLMChildProcessEnvironment.h │ │ ├── RLMMultiProcessTestCase.h │ │ ├── RLMTestCase.h │ │ ├── RLMTestObjects.h │ │ └── TestUtils.h │ └── Tests/ │ ├── ArrayPropertyTests.m │ ├── AsyncTests.mm │ ├── CompactionTests.m │ ├── Decimal128Tests.m │ ├── DictionaryPropertyTests.m │ ├── DynamicTests.m │ ├── EncryptionTests.mm │ ├── EnumeratorTests.m │ ├── InterprocessTests.m │ ├── KVOTests.mm │ ├── LinkTests.m │ ├── LinkingObjectsTests.mm │ ├── MigrationTests.mm │ ├── NotificationTests.m │ ├── ObjectCreationTests.mm │ ├── ObjectIdTests.m │ ├── ObjectInterfaceTests.m │ ├── ObjectSchemaTests.m │ ├── ObjectTests.m │ ├── PerformanceTests.m │ ├── PredicateUtilTests.mm │ ├── PrimitiveArrayPropertyTests.m │ ├── PrimitiveArrayPropertyTests.tpl.m │ ├── PrimitiveDictionaryPropertyTests.m │ ├── PrimitiveDictionaryPropertyTests.tpl.m │ ├── PrimitiveRLMValuePropertyTests.m │ ├── PrimitiveRLMValuePropertyTests.tpl.m │ ├── PrimitiveSetPropertyTests.m │ ├── PrimitiveSetPropertyTests.tpl.m │ ├── PropertyTests.m │ ├── QueryTests.m │ ├── RLMValueTests.m │ ├── RealmConfigurationTests.mm │ ├── RealmTests-Info.plist │ ├── RealmTests.mm │ ├── ResultsTests.m │ ├── SchemaTests.mm │ ├── SectionedResultsTests.m │ ├── SetPropertyTests.m │ ├── Swift/ │ │ ├── RLMTestCaseUtils.swift │ │ ├── RealmObjcSwiftTests-Info.plist │ │ ├── Swift-Tests-Bridging-Header.h │ │ ├── SwiftArrayPropertyTests.swift │ │ ├── SwiftArrayTests.swift │ │ ├── SwiftDynamicTests.swift │ │ ├── SwiftLinkTests.swift │ │ ├── SwiftObjectInterfaceTests.swift │ │ ├── SwiftPropertyTypeTest.swift │ │ ├── SwiftRLMDictionaryTests.swift │ │ ├── SwiftRealmTests.swift │ │ ├── SwiftSchemaTests.swift │ │ ├── SwiftSetPropertyTests.swift │ │ ├── SwiftSetTests.swift │ │ ├── SwiftTestObjects.swift │ │ └── SwiftUnicodeTests.swift │ ├── SwiftUITestHost/ │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── Objects.swift │ │ └── SwiftUITestHostApp.swift │ ├── SwiftUITestHostUITests/ │ │ ├── Info.plist │ │ └── SwiftUITestHostUITests.swift │ ├── TestHost/ │ │ ├── Info.plist │ │ └── main.m │ ├── ThreadSafeReferenceTests.m │ ├── TransactionTests.m │ ├── UnicodeTests.m │ ├── UtilTests.mm │ ├── array_tests.py │ ├── dictionary_tests.py │ ├── mixed_tests.py │ └── set_tests.py ├── Realm.podspec ├── Realm.xcodeproj/ │ ├── Realm.xcworkspace/ │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ ├── project.pbxproj │ └── xcshareddata/ │ ├── xcbaselines/ │ │ ├── 5D660FD71BE98C7C0021E04F.xcbaseline/ │ │ │ ├── 6890B8D9-CE81-403E-8EF6-B95A367D65B5.plist │ │ │ ├── B87A7896-8B70-4814-B20D-7CD723D62868.plist │ │ │ └── Info.plist │ │ └── E856D1DE195614A400FB2FCF.xcbaseline/ │ │ ├── 2EB6396F-9FD1-4243-AA83-2D9F9D4DD919.plist │ │ ├── 3AE81604-3FF9-49E2-A414-9B18BEEAE28F.plist │ │ ├── AAC6BA1A-785D-4850-B3EC-68BC9F1D3EEF.plist │ │ └── Info.plist │ └── xcschemes/ │ ├── CI.xcscheme │ ├── Realm.xcscheme │ ├── RealmSwift.xcscheme │ ├── SwiftLint.xcscheme │ ├── SwiftUITestHost.xcscheme │ ├── SwiftUITests.xcscheme │ └── TestHost.xcscheme ├── RealmSwift/ │ ├── Aliases.swift │ ├── AnyRealmValue.swift │ ├── Combine.swift │ ├── CustomPersistable.swift │ ├── Decimal128.swift │ ├── EmbeddedObject.swift │ ├── Error.swift │ ├── Geospatial.swift │ ├── Impl/ │ │ ├── BasicTypes.swift │ │ ├── CollectionAccess.swift │ │ ├── ComplexTypes.swift │ │ ├── KeyPathStrings.swift │ │ ├── ObjcBridgeable.swift │ │ ├── Persistable.swift │ │ ├── PropertyAccessors.swift │ │ ├── RealmCollectionImpl.swift │ │ └── SchemaDiscovery.swift │ ├── LinkingObjects.swift │ ├── List.swift │ ├── Map.swift │ ├── Migration.swift │ ├── MutableSet.swift │ ├── Object.swift │ ├── ObjectId.swift │ ├── ObjectSchema.swift │ ├── ObjectiveCSupport+AnyRealmValue.swift │ ├── ObjectiveCSupport.swift │ ├── Optional.swift │ ├── PersistedProperty.swift │ ├── PrivacyInfo.xcprivacy │ ├── Projection.swift │ ├── Property.swift │ ├── Query.swift │ ├── Realm.swift │ ├── RealmCollection.swift │ ├── RealmConfiguration.swift │ ├── RealmKeyedCollection.swift │ ├── RealmProperty.swift │ ├── Results.swift │ ├── Schema.swift │ ├── SectionedResults.swift │ ├── SortDescriptor.swift │ ├── SwiftUI.swift │ ├── Tests/ │ │ ├── AnyRealmValueTests.swift │ │ ├── CodableTests.swift │ │ ├── CombineTests.swift │ │ ├── CompactionTests.swift │ │ ├── CustomColumnNameTests.swift │ │ ├── CustomObjectCreationTests.swift │ │ ├── CustomPersistableTestObjects.swift │ │ ├── Decimal128Tests.swift │ │ ├── GeospatialTests.swift │ │ ├── KVOTests.swift │ │ ├── KeyPathTests.swift │ │ ├── ListTests.swift │ │ ├── MapTests.swift │ │ ├── MigrationTests.swift │ │ ├── MixedCollectionTest.swift │ │ ├── ModernKVOTests.swift │ │ ├── ModernObjectAccessorTests.swift │ │ ├── ModernObjectCreationTests.swift │ │ ├── ModernObjectTests.swift │ │ ├── ModernTestObjects.swift │ │ ├── MutableSetTests.swift │ │ ├── ObjectAccessorTests.swift │ │ ├── ObjectCreationTests.swift │ │ ├── ObjectCustomPropertiesTests.swift │ │ ├── ObjectIdTests.swift │ │ ├── ObjectSchemaInitializationTests.swift │ │ ├── ObjectSchemaTests.swift │ │ ├── ObjectTests.swift │ │ ├── ObjectiveCSupportTests.swift │ │ ├── PerformanceTests.swift │ │ ├── PrimitiveListTests.swift │ │ ├── PrimitiveMapTests.swift │ │ ├── PrimitiveMutableSetTests.swift │ │ ├── ProjectedCollectTests.swift │ │ ├── ProjectionTests.swift │ │ ├── PropertyTests.swift │ │ ├── QueryTests.swift │ │ ├── QueryTests.swift.gyb │ │ ├── RealmCollectionTypeTests.swift │ │ ├── RealmConfigurationTests.swift │ │ ├── RealmPropertyTests.swift │ │ ├── RealmSwiftTests-BridgingHeader.h │ │ ├── RealmTests.swift │ │ ├── SchemaTests.swift │ │ ├── SectionedResultsTests.swift │ │ ├── SortDescriptorTests.swift │ │ ├── SwiftLinkTests.swift │ │ ├── SwiftTestObjects.swift │ │ ├── SwiftUITests.swift │ │ ├── SwiftUnicodeTests.swift │ │ ├── TestCase.swift │ │ ├── TestUtils.swift │ │ ├── TestValueFactory.swift │ │ └── ThreadSafeReferenceTests.swift │ ├── ThreadSafeReference.swift │ └── Util.swift ├── RealmSwift.podspec ├── SUPPORT.md ├── build.sh ├── contrib/ │ ├── Development.md │ ├── ReleaseProcess.md │ ├── SignXCFramework.md │ └── UpgradingXcode.md ├── dependencies.list ├── docs/ │ ├── README.md │ ├── custom_head.html │ ├── example-projects.md │ ├── guides/ │ │ ├── crud/ │ │ │ ├── create.md │ │ │ ├── crud.md │ │ │ ├── delete.md │ │ │ ├── filter-data.md │ │ │ ├── react-to-changes.md │ │ │ ├── read.md │ │ │ ├── threading.md │ │ │ └── update.md │ │ ├── logging.md │ │ ├── model-data/ │ │ │ ├── change-an-object-model.md │ │ │ ├── model-data.md │ │ │ ├── object-models.md │ │ │ ├── relationships.md │ │ │ └── supported-types.md │ │ ├── quick-start.md │ │ ├── realm-files/ │ │ │ ├── bundle-a-realm.md │ │ │ ├── compacting.md │ │ │ ├── configure-and-open-a-realm.md │ │ │ ├── delete-a-realm.md │ │ │ ├── encrypt-a-realm.md │ │ │ ├── realm-files.md │ │ │ └── tvos.md │ │ ├── swift-concurrency.md │ │ ├── swiftui/ │ │ │ ├── configure-and-open-realm.md │ │ │ ├── filter-data.md │ │ │ ├── model-data/ │ │ │ │ ├── change-an-object-model.md │ │ │ │ └── define-a-realm-object-model.md │ │ │ ├── pass-realm-data-between-views.md │ │ │ ├── react-to-changes.md │ │ │ ├── swiftui-previews.md │ │ │ ├── swiftui-tutorial.md │ │ │ └── write.md │ │ ├── swiftui.md │ │ ├── test-and-debug.md │ │ ├── use-realm-with-actors.md │ │ └── xcode-playgrounds.md │ └── install.md ├── examples/ │ ├── README.md │ ├── installation/ │ │ ├── .gitignore │ │ ├── Carthage.xcodeproj/ │ │ │ └── project.pbxproj │ │ ├── CocoaPods.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── App.xcscheme │ │ ├── CocoaPods.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── Podfile │ │ ├── Source/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ObjCImport.m │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ ├── SwiftExample.entitlements │ │ │ └── SwiftExampleApp.swift │ │ ├── Static/ │ │ │ ├── StaticExample/ │ │ │ │ ├── Base.lproj/ │ │ │ │ │ ├── LaunchScreen.xib │ │ │ │ │ └── Main.storyboard │ │ │ │ ├── Images.xcassets/ │ │ │ │ │ └── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ └── main.m │ │ │ └── StaticExample.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── StaticExample.xcscheme │ │ ├── SubRealm/ │ │ │ ├── SubRealm.podspec │ │ │ └── SubRealm.swift │ │ ├── SwiftPackageManager.notxcodeproj/ │ │ │ └── project.pbxproj │ │ ├── SwiftPackageManagerDynamic.notxcodeproj/ │ │ │ └── project.pbxproj │ │ ├── XCFramework.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── build.rb │ ├── ios/ │ │ ├── objc/ │ │ │ ├── .gitignore │ │ │ ├── Backlink/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Backlink-Info.plist │ │ │ │ └── main.m │ │ │ ├── Common/ │ │ │ │ └── LaunchScreen.xib │ │ │ ├── Encryption/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Encryption-Info.plist │ │ │ │ ├── LabelViewController.h │ │ │ │ ├── LabelViewController.m │ │ │ │ └── main.m │ │ │ ├── Extension/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Extension.entitlements │ │ │ │ ├── Info.plist │ │ │ │ ├── Tick.h │ │ │ │ ├── Tick.m │ │ │ │ └── main.m │ │ │ ├── GroupedTableView/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Images.xcassets/ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── TableViewController.h │ │ │ │ ├── TableViewController.m │ │ │ │ └── main.m │ │ │ ├── Migration/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Examples/ │ │ │ │ │ ├── Example_v0.h │ │ │ │ │ ├── Example_v1.h │ │ │ │ │ ├── Example_v2.h │ │ │ │ │ ├── Example_v3.h │ │ │ │ │ ├── Example_v4.h │ │ │ │ │ └── Example_v5.h │ │ │ │ ├── Migration-Info.plist │ │ │ │ ├── RealmTemplates/ │ │ │ │ │ ├── default-v0.realm │ │ │ │ │ ├── default-v1.realm │ │ │ │ │ ├── default-v2.realm │ │ │ │ │ ├── default-v3.realm │ │ │ │ │ ├── default-v4.realm │ │ │ │ │ └── default-v5.realm │ │ │ │ └── main.m │ │ │ ├── REST/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── REST-Info.plist │ │ │ │ ├── Venue.h │ │ │ │ ├── Venue.m │ │ │ │ └── main.m │ │ │ ├── RealmExamples.xcodeproj/ │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata/ │ │ │ │ └── xcschemes/ │ │ │ │ ├── Backlink.xcscheme │ │ │ │ ├── Encryption.xcscheme │ │ │ │ ├── Extension.xcscheme │ │ │ │ ├── GroupedTableView.xcscheme │ │ │ │ ├── Migration.xcscheme │ │ │ │ ├── REST.xcscheme │ │ │ │ ├── Simple.xcscheme │ │ │ │ ├── TableView.xcscheme │ │ │ │ └── TodayExtension.xcscheme │ │ │ ├── RealmExamples.xcworkspace/ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata/ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ ├── RealmExamples.xcscmblueprint │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── Simple/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Simple-Info.plist │ │ │ │ └── main.m │ │ │ ├── TableView/ │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Images.xcassets/ │ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── TableView-Info.plist │ │ │ │ ├── TableViewController.h │ │ │ │ ├── TableViewController.m │ │ │ │ └── main.m │ │ │ └── TodayExtension/ │ │ │ ├── Info.plist │ │ │ ├── MainInterface.storyboard │ │ │ ├── TodayExtension.entitlements │ │ │ ├── TodayViewController.h │ │ │ └── TodayViewController.m │ │ └── swift/ │ │ ├── .gitignore │ │ ├── AppClip/ │ │ │ ├── AppClip.entitlements │ │ │ ├── AppClipApp.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── AppClipParent/ │ │ │ ├── AppClipParent.entitlements │ │ │ ├── AppClipParentApp.swift │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Constants.swift │ │ │ ├── ContentView.swift │ │ │ ├── DemoObject.swift │ │ │ ├── Info.plist │ │ │ └── Preview Content/ │ │ │ └── Preview Assets.xcassets/ │ │ │ └── Contents.json │ │ ├── Backlink/ │ │ │ ├── AppDelegate.swift │ │ │ └── Info.plist │ │ ├── Common/ │ │ │ └── LaunchScreen.xib │ │ ├── Encryption/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Info.plist │ │ │ └── ViewController.swift │ │ ├── GettingStarted.playground/ │ │ │ ├── Contents.swift │ │ │ └── contents.xcplayground │ │ ├── GroupedTableView/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Images.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ └── TableViewController.swift │ │ ├── ListSwiftUI/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── Views/ │ │ │ ├── App.swift │ │ │ └── ContentView.swift │ │ ├── Migration/ │ │ │ ├── AppDelegate.swift │ │ │ ├── Examples/ │ │ │ │ ├── Example_v0.swift │ │ │ │ ├── Example_v1.swift │ │ │ │ ├── Example_v2.swift │ │ │ │ ├── Example_v3.swift │ │ │ │ ├── Example_v4.swift │ │ │ │ └── Example_v5.swift │ │ │ ├── Info.plist │ │ │ ├── Migration.xcconfig │ │ │ ├── README.md │ │ │ └── RealmTemplates/ │ │ │ ├── default-v0.realm │ │ │ ├── default-v1.realm │ │ │ ├── default-v2.realm │ │ │ ├── default-v3.realm │ │ │ ├── default-v4.realm │ │ │ └── default-v5.realm │ │ ├── PlaygroundFrameworkWrapper/ │ │ │ ├── Info.plist │ │ │ └── PlaygroundFrameworkWrapper.swift │ │ ├── Projections/ │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── AccentColor.colorset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── ContentView.swift │ │ │ ├── Info.plist │ │ │ ├── Preview Content/ │ │ │ │ └── Preview Assets.xcassets/ │ │ │ │ └── Contents.json │ │ │ └── ProjectionsApp.swift │ │ ├── RealmExamples.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ ├── AppClip.xcscheme │ │ │ ├── Backlink.xcscheme │ │ │ ├── Encryption.xcscheme │ │ │ ├── GroupedTableView.xcscheme │ │ │ ├── Migration.xcscheme │ │ │ ├── Simple.xcscheme │ │ │ └── TableView.xcscheme │ │ ├── RealmExamples.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── RealmExamples.xcscmblueprint │ │ │ └── WorkspaceSettings.xcsettings │ │ ├── Simple/ │ │ │ ├── AppDelegate.swift │ │ │ └── Info.plist │ │ └── TableView/ │ │ ├── AppDelegate.swift │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── TableViewController.swift │ ├── osx/ │ │ └── objc/ │ │ ├── JSONImport/ │ │ │ ├── Person.h │ │ │ ├── Person.m │ │ │ ├── main.m │ │ │ └── persons.json │ │ ├── RealmExamples.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ └── JSONImport.xcscheme │ │ └── RealmExamples.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── WorkspaceSettings.xcsettings │ └── tvos/ │ ├── objc/ │ │ ├── DownloadCache/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── App Icon & Top Shelf Image.brandassets/ │ │ │ │ │ ├── App Icon - Large.imagestack/ │ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── App Icon - Small.imagestack/ │ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Top Shelf Image.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── RepositoriesViewController.h │ │ │ ├── RepositoriesViewController.m │ │ │ ├── Repository.h │ │ │ ├── Repository.m │ │ │ ├── RepositoryCell.h │ │ │ ├── RepositoryCell.m │ │ │ └── main.m │ │ ├── PreloadedData/ │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets/ │ │ │ │ ├── App Icon & Top Shelf Image.brandassets/ │ │ │ │ │ ├── App Icon - Large.imagestack/ │ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── App Icon - Small.imagestack/ │ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Top Shelf Image.imageset/ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── LaunchImage.launchimage/ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj/ │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── Place.h │ │ │ ├── Place.m │ │ │ ├── PlacesViewController.h │ │ │ ├── PlacesViewController.m │ │ │ └── main.m │ │ ├── RealmExamples.xcodeproj/ │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata/ │ │ │ └── xcschemes/ │ │ │ ├── DownloadCache.xcscheme │ │ │ └── PreloadedData.xcscheme │ │ └── RealmExamples.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── WorkspaceSettings.xcsettings │ └── swift/ │ ├── DownloadCache/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── App Icon & Top Shelf Image.brandassets/ │ │ │ │ ├── App Icon - Large.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon - Small.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Top Shelf Image.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── RepositoriesViewController.swift │ │ ├── Repository.swift │ │ └── RepositoryCell.swift │ ├── PreloadedData/ │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets/ │ │ │ ├── App Icon & Top Shelf Image.brandassets/ │ │ │ │ ├── App Icon - Large.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── App Icon - Small.imagestack/ │ │ │ │ │ ├── Back.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Front.imagestacklayer/ │ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Middle.imagestacklayer/ │ │ │ │ │ ├── Content.imageset/ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── Top Shelf Image.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── LaunchImage.launchimage/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── Place.swift │ │ └── PlacesViewController.swift │ ├── RealmExamples.xcodeproj/ │ │ ├── project.pbxproj │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ ├── DownloadCache.xcscheme │ │ └── PreloadedData.xcscheme │ └── RealmExamples.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── RealmExamples.xcscmblueprint │ └── WorkspaceSettings.xcsettings ├── plugin/ │ ├── README.md │ ├── RealmPlugin/ │ │ ├── RLMPRealmPlugin.h │ │ ├── RLMPRealmPlugin.m │ │ ├── RLMPSimulatorManager.h │ │ ├── RLMPSimulatorManager.m │ │ ├── RealmPlugin-Info.plist │ │ ├── RealmPlugin-Prefix.pch │ │ └── en.lproj/ │ │ └── InfoPlist.strings │ ├── RealmPlugin.xcodeproj/ │ │ └── project.pbxproj │ ├── Templates/ │ │ ├── file_templates/ │ │ │ └── Realm Model Object.xctemplate/ │ │ │ ├── Objective-C/ │ │ │ │ ├── ___FILEBASENAME___.h │ │ │ │ └── ___FILEBASENAME___.m │ │ │ ├── Swift/ │ │ │ │ └── ___FILEBASENAME___.swift │ │ │ ├── TemplateIcon.icns │ │ │ └── TemplateInfo.plist │ │ └── install_templates.sh │ └── rlm_lldb.py └── scripts/ ├── create-release-package.rb ├── download-core.sh ├── generate-rlmversion.sh ├── github_release.rb ├── package_examples.rb ├── pr-ci-matrix.rb ├── release-matrix.rb ├── setup-cocoapods.sh └── swift-version.sh