diff --git a/.gitignore b/.gitignore index b176a27..df7e993 100644 --- a/.gitignore +++ b/.gitignore @@ -115,4 +115,6 @@ timeline.xctimeline playground.xcworkspace # Swift Package Manager -# Package.resolved \ No newline at end of file +# Package.resolved +packages/apple/**/.build/ +**/.build/ diff --git a/apps/apple/Velody.xcodeproj/project.pbxproj b/apps/apple/Velody.xcodeproj/project.pbxproj index 23968e4..e9c0544 100644 --- a/apps/apple/Velody.xcodeproj/project.pbxproj +++ b/apps/apple/Velody.xcodeproj/project.pbxproj @@ -11,6 +11,7 @@ 151772779307EFC3B3A17477 /* MacLibraryViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD72F644E3F2E28758E68D63 /* MacLibraryViewModel.swift */; }; 2E9DD262BF65832378F37DD4 /* VelodyPersistence in Frameworks */ = {isa = PBXBuildFile; productRef = 4DD09D7C123E184CEC0A2F4D /* VelodyPersistence */; }; 2F9E426A66F4887C301AB13C /* FolderAccessService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5EC9AED651FE0AB193AAFE94 /* FolderAccessService.swift */; }; + 3B9765B34963F430467B7527 /* LocalMusicScanner.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CAD2FE907C9C90FBE01E7D4 /* LocalMusicScanner.swift */; }; 3D22DE55C4A27A4DE68E6359 /* VelodyUtilities in Frameworks */ = {isa = PBXBuildFile; productRef = AAD3F903A475AA0B0159C79E /* VelodyUtilities */; }; 3D2A2E7D9371C62F8F86DD84 /* VelodyDomain in Frameworks */ = {isa = PBXBuildFile; productRef = 3C910108376E6ECEF152DCE1 /* VelodyDomain */; }; 5D2616BFA3DD5E131EC928F2 /* iPhoneLibraryViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE56EE8AD38DC563003A7979 /* iPhoneLibraryViewModel.swift */; }; @@ -29,6 +30,7 @@ /* Begin PBXFileReference section */ 07508485E10C6E2942FE29AB /* VelodySync */ = {isa = PBXFileReference; lastKnownFileType = folder; name = VelodySync; path = ../../packages/apple/VelodySync; sourceTree = SOURCE_ROOT; }; 0F6993844F6FD7E86D52EC25 /* VelodyNetworking */ = {isa = PBXFileReference; lastKnownFileType = folder; name = VelodyNetworking; path = ../../packages/apple/VelodyNetworking; sourceTree = SOURCE_ROOT; }; + 3CAD2FE907C9C90FBE01E7D4 /* LocalMusicScanner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LocalMusicScanner.swift; sourceTree = ""; }; 5EC9AED651FE0AB193AAFE94 /* FolderAccessService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FolderAccessService.swift; sourceTree = ""; }; 6E7BCB85A35B8286E4472822 /* VelodyPersistence */ = {isa = PBXFileReference; lastKnownFileType = folder; name = VelodyPersistence; path = ../../packages/apple/VelodyPersistence; sourceTree = SOURCE_ROOT; }; 7A1BDB40E1A38A685237BCF3 /* VelodyMac.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = VelodyMac.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -108,6 +110,7 @@ isa = PBXGroup; children = ( 5EC9AED651FE0AB193AAFE94 /* FolderAccessService.swift */, + 3CAD2FE907C9C90FBE01E7D4 /* LocalMusicScanner.swift */, DB28FE17346E100F697C1BF4 /* MacLibraryView.swift */, AD72F644E3F2E28758E68D63 /* MacLibraryViewModel.swift */, 96A45EA6FB9536D0CD91874C /* VelodyMacApp.swift */, @@ -226,6 +229,7 @@ buildActionMask = 2147483647; files = ( 2F9E426A66F4887C301AB13C /* FolderAccessService.swift in Sources */, + 3B9765B34963F430467B7527 /* LocalMusicScanner.swift in Sources */, A54D8AD8A59D8B77FCA0794F /* MacLibraryView.swift in Sources */, 151772779307EFC3B3A17477 /* MacLibraryViewModel.swift in Sources */, 7174D80FB45839E82F150613 /* VelodyMacApp.swift in Sources */, diff --git a/apps/apple/VelodyMac/Sources/FolderAccessService.swift b/apps/apple/VelodyMac/Sources/FolderAccessService.swift index 284161b..e469c88 100644 --- a/apps/apple/VelodyMac/Sources/FolderAccessService.swift +++ b/apps/apple/VelodyMac/Sources/FolderAccessService.swift @@ -1,8 +1,9 @@ import AppKit import Foundation +import VelodyPersistence @MainActor -final class FolderAccessService { +final class FolderAccessService: VelodyPersistence.FolderAccessService { private let bookmarkKey = "velody.selected-folder.bookmark" func chooseFolder() -> URL? { @@ -16,17 +17,8 @@ final class FolderAccessService { return nil } - do { - let bookmark = try url.bookmarkData( - options: [.withSecurityScope], - includingResourceValuesForKeys: nil, - relativeTo: nil - ) - UserDefaults.standard.set(bookmark, forKey: bookmarkKey) - return url - } catch { - return url - } + saveBookmark(for: url) + return url } func storedFolderURL() -> URL? { @@ -37,11 +29,31 @@ final class FolderAccessService { } var isStale = false - return try? URL( + guard let url = try? URL( resolvingBookmarkData: bookmark, options: [.withSecurityScope], relativeTo: nil, bookmarkDataIsStale: &isStale - ) + ) else { + return nil + } + + if isStale { + saveBookmark(for: url) + } + + return url + } + + private func saveBookmark(for url: URL) { + guard let bookmark = try? url.bookmarkData( + options: [.withSecurityScope], + includingResourceValuesForKeys: nil, + relativeTo: nil + ) else { + return + } + + UserDefaults.standard.set(bookmark, forKey: bookmarkKey) } } diff --git a/apps/apple/VelodyMac/Sources/LocalMusicScanner.swift b/apps/apple/VelodyMac/Sources/LocalMusicScanner.swift new file mode 100644 index 0000000..63b60fd --- /dev/null +++ b/apps/apple/VelodyMac/Sources/LocalMusicScanner.swift @@ -0,0 +1,131 @@ +import AVFoundation +import Foundation +import VelodyDomain +import VelodyPersistence + +final class AVFoundationMetadataReader: MetadataReader { + func readMetadata(for fileURL: URL) async throws -> LocalTrackMetadata { + let asset = AVURLAsset(url: fileURL) + let commonMetadata = try await asset.load(.commonMetadata) + let duration = try? await asset.load(.duration) + + return LocalTrackMetadata( + title: commonMetadata.firstStringValue(for: .commonIdentifierTitle), + artist: commonMetadata.firstStringValue(for: .commonIdentifierArtist), + album: commonMetadata.firstStringValue(for: .commonIdentifierAlbumName), + durationSeconds: duration?.seconds.validDurationSeconds + ) + } +} + +final class FileSystemLocalMusicScanner: LocalMusicScanner { + private let metadataReader: any MetadataReader + private let fileManager: FileManager + + init( + metadataReader: any MetadataReader, + fileManager: FileManager = .default + ) { + self.metadataReader = metadataReader + self.fileManager = fileManager + } + + func scanFolder(at folderURL: URL) async throws -> [LibraryTrack] { + let hasScopedAccess = folderURL.startAccessingSecurityScopedResource() + defer { + if hasScopedAccess { + folderURL.stopAccessingSecurityScopedResource() + } + } + + guard let enumerator = fileManager.enumerator( + at: folderURL, + includingPropertiesForKeys: [.isRegularFileKey], + options: [.skipsHiddenFiles, .skipsPackageDescendants] + ) else { + throw CocoaError(.fileReadUnknown) + } + + var discoveredTracks: [LibraryTrack] = [] + + for case let fileURL as URL in enumerator { + guard shouldScan(fileURL) else { + continue + } + + let fallbackTitle = fileURL.deletingPathExtension().lastPathComponent + + do { + let metadata = try await metadataReader.readMetadata(for: fileURL) + discoveredTracks.append( + LibraryTrack( + id: fileURL.path, + title: metadata.title?.trimmedNonEmpty ?? fallbackTitle, + artist: metadata.artist?.trimmedNonEmpty ?? "Unknown Artist", + album: metadata.album?.trimmedNonEmpty, + durationSeconds: metadata.durationSeconds, + localFilePath: fileURL.path, + sha256: nil + ) + ) + } catch { + discoveredTracks.append( + LibraryTrack( + id: fileURL.path, + title: fallbackTitle, + artist: "Unknown Artist", + album: nil, + durationSeconds: nil, + localFilePath: fileURL.path, + sha256: nil + ) + ) + } + } + + return discoveredTracks.sorted { lhs, rhs in + let titleOrder = lhs.title.localizedCaseInsensitiveCompare(rhs.title) + if titleOrder == .orderedSame { + return lhs.localFilePath.localizedCaseInsensitiveCompare(rhs.localFilePath) == .orderedAscending + } + + return titleOrder == .orderedAscending + } + } + + private func shouldScan(_ fileURL: URL) -> Bool { + guard fileURL.pathExtension.lowercased() == "mp3" else { + return false + } + + let resourceValues = try? fileURL.resourceValues(forKeys: [.isRegularFileKey]) + return resourceValues?.isRegularFile == true + } +} + +private extension Array where Element == AVMetadataItem { + func firstStringValue(for identifier: AVMetadataIdentifier) -> String? { + AVMetadataItem + .metadataItems(from: self, filteredByIdentifier: identifier) + .first? + .stringValue? + .trimmedNonEmpty + } +} + +private extension Double { + var validDurationSeconds: Double? { + guard isFinite, self > 0 else { + return nil + } + + return self + } +} + +private extension String { + var trimmedNonEmpty: String? { + let trimmed = trimmingCharacters(in: .whitespacesAndNewlines) + return trimmed.isEmpty ? nil : trimmed + } +} diff --git a/apps/apple/VelodyMac/Sources/MacLibraryView.swift b/apps/apple/VelodyMac/Sources/MacLibraryView.swift index e173390..b015059 100644 --- a/apps/apple/VelodyMac/Sources/MacLibraryView.swift +++ b/apps/apple/VelodyMac/Sources/MacLibraryView.swift @@ -1,3 +1,4 @@ +import Foundation import SwiftUI import VelodyDomain @@ -5,52 +6,91 @@ struct MacLibraryView: View { @State private var viewModel = MacLibraryViewModel() var body: some View { - NavigationSplitView { + VStack(alignment: .leading, spacing: 16) { + Text("Private Library Foundation") + .font(.largeTitle) + + Text("Selected folder") + .font(.headline) + + Text(viewModel.selectedFolderPath) + .textSelection(.enabled) + .foregroundStyle(.secondary) + + HStack(spacing: 12) { + Button("Choose Music Folder") { + viewModel.chooseFolder() + } + + Button("Scan MP3 Files") { + Task { + await viewModel.scanMP3Files() + } + } + .disabled(viewModel.selectedFolderPath == "No folder selected" || viewModel.isScanning) + } + + HStack(spacing: 12) { + Text("Discovered tracks: \(viewModel.discoveredTrackCount)") + .font(.headline) + + if viewModel.isScanning { + ProgressView() + .controlSize(.small) + } + } + + Text(viewModel.scanStatus) + .foregroundStyle(.secondary) + List(viewModel.tracks) { track in VStack(alignment: .leading, spacing: 4) { Text(track.title) .font(.headline) Text(track.artist) .foregroundStyle(.secondary) + if let album = track.album { Text(album) .font(.caption) .foregroundStyle(.secondary) } + + if let durationSeconds = track.durationSeconds { + Text("Duration: \(format(durationSeconds: durationSeconds))") + .font(.caption2) + .foregroundStyle(.tertiary) + } + + Text(track.localFilePath) + .font(.caption2) + .foregroundStyle(.tertiary) + .lineLimit(1) } .padding(.vertical, 4) } - .navigationTitle("Velody") - } detail: { - VStack(alignment: .leading, spacing: 16) { - Text("Private Library Foundation") - .font(.largeTitle) - Text("Selected folder") - .font(.headline) - Text(viewModel.selectedFolderPath) - .textSelection(.enabled) - Text("Sync status") - .font(.headline) - Text(viewModel.syncStatus) - .foregroundStyle(.secondary) - - HStack { - Button("Choose Watched Folder") { - viewModel.chooseFolder() - } - Button("Refresh Placeholder Sync") { - Task { - await viewModel.refreshSyncStatus() - } - } + .overlay { + if viewModel.tracks.isEmpty && !viewModel.isScanning { + ContentUnavailableView( + "No MP3 Files Discovered", + systemImage: "music.note.list", + description: Text("Choose a folder, then run a manual scan.") + ) } - - Spacer() } - .padding(24) + + Spacer(minLength: 0) } + .padding(24) .task { await viewModel.loadIfNeeded() } } + + private func format(durationSeconds: Double) -> String { + let totalSeconds = Int(durationSeconds.rounded()) + let minutes = totalSeconds / 60 + let seconds = totalSeconds % 60 + return String(format: "%d:%02d", minutes, seconds) + } } diff --git a/apps/apple/VelodyMac/Sources/MacLibraryViewModel.swift b/apps/apple/VelodyMac/Sources/MacLibraryViewModel.swift index 58b90ce..c86d61c 100644 --- a/apps/apple/VelodyMac/Sources/MacLibraryViewModel.swift +++ b/apps/apple/VelodyMac/Sources/MacLibraryViewModel.swift @@ -1,59 +1,76 @@ import Foundation import Observation import VelodyDomain -import VelodyNetworking import VelodyPersistence -import VelodySync -import VelodyUtilities @MainActor @Observable final class MacLibraryViewModel { var tracks: [LibraryTrack] = [] var selectedFolderPath = "No folder selected" - var syncStatus = "Sync not started" + var scanStatus = "Choose a folder to begin local discovery." + var discoveredTrackCount = 0 + var isScanning = false - private let folderAccessService = FolderAccessService() - private let keychainService = MemoryKeychainService() + private let folderAccessService: any VelodyPersistence.FolderAccessService + private let localMusicScanner: any LocalMusicScanner private let store = InMemoryLocalLibraryStore() - private let syncCoordinator: PlaceholderSyncCoordinator private var hasLoaded = false init() { - let environment = ServerEnvironment( - baseURL: URL(string: "http://localhost:3000")!, - appVersion: "0.1.0" - ) - let apiClient = StubVelodyAPIClient(environment: environment) - self.syncCoordinator = PlaceholderSyncCoordinator( - apiClient: apiClient, - store: store + let folderAccessService = FolderAccessService() + let localMusicScanner = FileSystemLocalMusicScanner( + metadataReader: AVFoundationMetadataReader() ) + + self.folderAccessService = folderAccessService + self.localMusicScanner = localMusicScanner + if let url = folderAccessService.storedFolderURL() { selectedFolderPath = url.path + scanStatus = "Folder restored. Run a manual scan to discover MP3 files." } } func loadIfNeeded() async { guard !hasLoaded else { return } hasLoaded = true - await refreshSyncStatus() - await keychainService.save("placeholder-bootstrap-token", forKey: "bootstrap-token") - } - - func refreshSyncStatus() async { - do { - let result = try await syncCoordinator.performInitialSync() - tracks = result.tracks - syncStatus = result.statusMessage - } catch { - syncStatus = "Sync placeholder failed: \(error.localizedDescription)" - } + tracks = await store.loadTracks() + discoveredTrackCount = tracks.count } func chooseFolder() { if let url = folderAccessService.chooseFolder() { selectedFolderPath = url.path + scanStatus = "Folder selected. Run a manual scan to discover MP3 files." + tracks = [] + discoveredTrackCount = 0 + Task { + await store.replaceTracks([]) + } + } + } + + func scanMP3Files() async { + guard let folderURL = folderAccessService.storedFolderURL() else { + scanStatus = "Choose a folder before scanning." + return + } + + isScanning = true + scanStatus = "Scanning MP3 files..." + defer { + isScanning = false + } + + do { + let discoveredTracks = try await localMusicScanner.scanFolder(at: folderURL) + await store.replaceTracks(discoveredTracks) + tracks = await store.loadTracks() + discoveredTrackCount = tracks.count + scanStatus = "Scan finished. Found \(discoveredTrackCount) MP3 file(s)." + } catch { + scanStatus = "Scan failed: \(error.localizedDescription)" } } } diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm deleted file mode 100644 index 6a3a944..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm deleted file mode 100644 index ab9ec13..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm deleted file mode 100644 index 5bc772c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm deleted file mode 100644 index 86b5460..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm deleted file mode 100644 index d772619..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm deleted file mode 100644 index d3b6ced..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm deleted file mode 100644 index 218b5d4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm deleted file mode 100644 index 3137d97..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm deleted file mode 100644 index cb2cc72..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm deleted file mode 100644 index 9379435..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm deleted file mode 100644 index 3794b65..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 6873b88..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm deleted file mode 100644 index 2326bd1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm deleted file mode 100644 index a1a4234..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 7cfc95e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 99168d5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index c51989f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index c65d30c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 7d6cd17..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index dcc6910..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index b9bc35e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm deleted file mode 100644 index d5a0011..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm deleted file mode 100644 index dcdbde1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm deleted file mode 100644 index 8fdd18e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 93152fb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm deleted file mode 100644 index 22574e9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm deleted file mode 100644 index dfd6ffe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm deleted file mode 100644 index b69f3af..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm deleted file mode 100644 index f0e86d1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm deleted file mode 100644 index 762ec8a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 1d5c5af..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index f6a8b3c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm deleted file mode 100644 index f1937eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule deleted file mode 100644 index 0d212ac..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 491412 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule deleted file mode 100644 index ec8012b..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule +++ /dev/null @@ -1,68 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405610000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 179160 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule deleted file mode 100644 index d8914c0..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule +++ /dev/null @@ -1,36 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 77504 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule deleted file mode 100644 index 95ebaec..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule +++ /dev/null @@ -1,64 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405605000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 210900 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule deleted file mode 100644 index 34a0aba..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule +++ /dev/null @@ -1,100 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405644000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 3785860 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1772776850000000000 - path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' - size: 162 - sdk_relative: true - - mtime: 1772253432000000000 - path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' - size: 81098 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true - - mtime: 1776564811000000000 - path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1155103 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule deleted file mode 100644 index c0fdeb6..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405613000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30136 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule deleted file mode 100644 index a2a4108..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule +++ /dev/null @@ -1,52 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405587000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 50836 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule deleted file mode 100644 index 748ae1f..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule +++ /dev/null @@ -1,44 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405589000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30876 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule deleted file mode 100644 index 1432dc9..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule +++ /dev/null @@ -1,12 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405569000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 15012500 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule deleted file mode 100644 index de1fb4a..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 18524 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559148000000000 - path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1411 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule deleted file mode 100644 index 3596a85..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 401660 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule deleted file mode 100644 index 83acb25..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405609000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 117716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule deleted file mode 100644 index fbe57da..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule deleted file mode 100644 index a57816b..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 748656 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule deleted file mode 100644 index 197735f..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405578000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 92188 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule deleted file mode 100644 index 698d567..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule +++ /dev/null @@ -1,24 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405579000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23256 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule deleted file mode 100644 index 824fb22..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule +++ /dev/null @@ -1,28 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405580000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 20564 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule deleted file mode 100644 index 8634693..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405576000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 84172 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc deleted file mode 100644 index dd8a684..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule deleted file mode 100644 index 40239ba..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo deleted file mode 100644 index 87b0926..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d deleted file mode 100644 index 7f4498a..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o deleted file mode 100644 index dde9a1d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps deleted file mode 100644 index 89526ee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d deleted file mode 100644 index ac087c4..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h deleted file mode 100644 index fefd13b..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYDOMAIN_SWIFT_H -#define VELODYDOMAIN_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap deleted file mode 100644 index 7f66c14..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyDomain { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h" -} diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json deleted file mode 100644 index 0cfbbce..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia" - } -} diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors deleted file mode 100644 index 9231254..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources deleted file mode 100644 index 7727965..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/description.json b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/description.json deleted file mode 100644 index b35fa6d..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/description.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 deleted file mode 100644 index d8de0d0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 deleted file mode 100644 index a3a9228..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 deleted file mode 100644 index 332cecc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 deleted file mode 100644 index 8ab5d97..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 deleted file mode 100644 index 3f7f1f4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 deleted file mode 100644 index 4ba51ab..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A deleted file mode 100644 index 9dc6451..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B deleted file mode 100644 index de0d748..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C deleted file mode 100644 index 2d7bd3c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C deleted file mode 100644 index 1c187c1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D deleted file mode 100644 index f552bbf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F deleted file mode 100644 index 9784784..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G deleted file mode 100644 index 8c39ec2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I deleted file mode 100644 index 4131c00..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I deleted file mode 100644 index ba2a57d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K deleted file mode 100644 index 472d29d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L deleted file mode 100644 index 3865ab3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L deleted file mode 100644 index 7d87af8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M deleted file mode 100644 index c659b9c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P deleted file mode 100644 index 776035c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q deleted file mode 100644 index 2ccb007..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R deleted file mode 100644 index 0988fed..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S deleted file mode 100644 index 70eaab4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V deleted file mode 100644 index f142839..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W deleted file mode 100644 index 3fc3c57..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X deleted file mode 100644 index d92858e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X deleted file mode 100644 index 65fbaee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z deleted file mode 100644 index b015911..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 deleted file mode 100644 index fc81374..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 deleted file mode 100644 index 48d8ee3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 deleted file mode 100644 index 5674743..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 deleted file mode 100644 index 6e84472..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 deleted file mode 100644 index e3acd29..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 deleted file mode 100644 index f793c0c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 deleted file mode 100644 index 87575cf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 deleted file mode 100644 index 7a74614..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 deleted file mode 100644 index 2fb6304..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 deleted file mode 100644 index 66750c4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 deleted file mode 100644 index e76046c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 deleted file mode 100644 index f605b23..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 deleted file mode 100644 index beb3eaa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 deleted file mode 100644 index c8fb1a1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 deleted file mode 100644 index 92d491d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 deleted file mode 100644 index 9cedb84..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 deleted file mode 100644 index 9ef1b4f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 deleted file mode 100644 index 2fa39fd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B deleted file mode 100644 index d63482d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B deleted file mode 100644 index f913215..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C deleted file mode 100644 index 69ceaf3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F deleted file mode 100644 index c0704f0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I deleted file mode 100644 index ecde0c5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I deleted file mode 100644 index 807c71f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I deleted file mode 100644 index 74b5449..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I deleted file mode 100644 index b241d51..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I deleted file mode 100644 index ae9b5e5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J deleted file mode 100644 index 315f757..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K deleted file mode 100644 index 25f5b8d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N deleted file mode 100644 index 2832534..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N deleted file mode 100644 index db107cb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q deleted file mode 100644 index e2b8122..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R deleted file mode 100644 index 4315342..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W deleted file mode 100644 index bf7e3e8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X deleted file mode 100644 index 9f59f70..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z deleted file mode 100644 index ddbd47b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 deleted file mode 100644 index 9a6aac6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 deleted file mode 100644 index e3587a6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 deleted file mode 100644 index 15a8f88..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 deleted file mode 100644 index cad8dca..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 deleted file mode 100644 index 4fef39b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 deleted file mode 100644 index b05a151..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A deleted file mode 100644 index e8f7f6f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C deleted file mode 100644 index 09d6f89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D deleted file mode 100644 index 41de67b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E deleted file mode 100644 index 8f5c69b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E deleted file mode 100644 index 9f42e38..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F deleted file mode 100644 index cb48ea9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H deleted file mode 100644 index 1b90c98..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I deleted file mode 100644 index a9d8c35..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K deleted file mode 100644 index 154c8c4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O deleted file mode 100644 index 5c4dcf1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q deleted file mode 100644 index 754ef57..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R deleted file mode 100644 index e9d8da2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S deleted file mode 100644 index 4f8a13d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S deleted file mode 100644 index 727e0ff..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U deleted file mode 100644 index 44436b4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U deleted file mode 100644 index ef7fa0f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U deleted file mode 100644 index ca6edfc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U deleted file mode 100644 index 1a9b16f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V deleted file mode 100644 index 52d7cd9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z deleted file mode 100644 index c9b3910..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z deleted file mode 100644 index 5a10275..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 deleted file mode 100644 index fc00457..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 deleted file mode 100644 index 3db7277..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 deleted file mode 100644 index f93985c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 deleted file mode 100644 index e86e3e7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 deleted file mode 100644 index 3e9bd95..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 deleted file mode 100644 index 27edb3c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 deleted file mode 100644 index ba671da..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 deleted file mode 100644 index 59ddecf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 deleted file mode 100644 index f7dc6fb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C deleted file mode 100644 index ec48d2a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D deleted file mode 100644 index 2e22bd9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E deleted file mode 100644 index 7fe6d84..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F deleted file mode 100644 index 6cc497e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F deleted file mode 100644 index fb2179f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H deleted file mode 100644 index ffe050b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J deleted file mode 100644 index 727eae4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J deleted file mode 100644 index bd5ba39..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K deleted file mode 100644 index 19d4de3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K deleted file mode 100644 index d888ae2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K deleted file mode 100644 index f002fd2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L deleted file mode 100644 index aec02a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L deleted file mode 100644 index 9db0c86..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M deleted file mode 100644 index 5b387b6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O deleted file mode 100644 index bb15053..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q deleted file mode 100644 index 14232cb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q deleted file mode 100644 index c35d2db..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T deleted file mode 100644 index cdfa612..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U deleted file mode 100644 index 572e574..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U deleted file mode 100644 index 9cc36aa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V deleted file mode 100644 index dc32420..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V deleted file mode 100644 index e02c5c9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W deleted file mode 100644 index 7a56612..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X deleted file mode 100644 index 50435d1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X deleted file mode 100644 index 2ad8efe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y deleted file mode 100644 index 3175c2b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z deleted file mode 100644 index c32a976..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 deleted file mode 100644 index 8746a3f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 deleted file mode 100644 index e302fee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 deleted file mode 100644 index a019c73..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 deleted file mode 100644 index ee3a337..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 deleted file mode 100644 index c970b9f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 deleted file mode 100644 index 621ff54..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 deleted file mode 100644 index bf13889..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C deleted file mode 100644 index 69bc594..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C deleted file mode 100644 index 37376cf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D deleted file mode 100644 index 959ae33..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E deleted file mode 100644 index 3c7cf0a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F deleted file mode 100644 index cfcce56..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I deleted file mode 100644 index e9afed6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K deleted file mode 100644 index 61024bb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O deleted file mode 100644 index e905484..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P deleted file mode 100644 index 84212f2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q deleted file mode 100644 index 47386d7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q deleted file mode 100644 index 711b99d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S deleted file mode 100644 index 82229a8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S deleted file mode 100644 index 13ce346..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V deleted file mode 100644 index 1b0f1c3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V deleted file mode 100644 index 92afd17..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W deleted file mode 100644 index bdf9135..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X deleted file mode 100644 index e79f069..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X deleted file mode 100644 index 889c4a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 deleted file mode 100644 index f587a0c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 deleted file mode 100644 index 9846567..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 deleted file mode 100644 index 62f1933..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 deleted file mode 100644 index f783edd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 deleted file mode 100644 index aacb5cb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 deleted file mode 100644 index 536822a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A deleted file mode 100644 index 1f3281a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B deleted file mode 100644 index e64ebec..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B deleted file mode 100644 index 9553b1d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C deleted file mode 100644 index 92f14d1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C deleted file mode 100644 index a27dd7f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D deleted file mode 100644 index d20239b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G deleted file mode 100644 index 44a63bd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H deleted file mode 100644 index 5106054..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J deleted file mode 100644 index 4ae78ee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K deleted file mode 100644 index 8626382..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N deleted file mode 100644 index d77c105..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O deleted file mode 100644 index 70c93b0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O deleted file mode 100644 index a4a2f86..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P deleted file mode 100644 index 712e3f1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q deleted file mode 100644 index 35310d5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R deleted file mode 100644 index a24a655..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R deleted file mode 100644 index 029a717..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S deleted file mode 100644 index 4992e48..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T deleted file mode 100644 index 82f2da3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U deleted file mode 100644 index d405781..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W deleted file mode 100644 index 8cb65e8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y deleted file mode 100644 index c0fc055..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y deleted file mode 100644 index 89a2019..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 deleted file mode 100644 index 9b669ff..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 deleted file mode 100644 index affc184..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 deleted file mode 100644 index baeeb13..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 deleted file mode 100644 index e4ddb61..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 deleted file mode 100644 index 7712a33..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 deleted file mode 100644 index fded31d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 deleted file mode 100644 index 66a4bd5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 deleted file mode 100644 index c98dd27..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A deleted file mode 100644 index 501f418..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C deleted file mode 100644 index e61e005..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E deleted file mode 100644 index 9c05cfb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E deleted file mode 100644 index 783e2eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F deleted file mode 100644 index d91a944..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G deleted file mode 100644 index 13df552..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J deleted file mode 100644 index 1a7bef4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K deleted file mode 100644 index b98969c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M deleted file mode 100644 index 785c16d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N deleted file mode 100644 index 9b7055a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O deleted file mode 100644 index 27789e8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q deleted file mode 100644 index a049a95..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q deleted file mode 100644 index 18346d9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R deleted file mode 100644 index 862efef..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V deleted file mode 100644 index 28ee5d0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W deleted file mode 100644 index 8f4ad95..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X deleted file mode 100644 index 9158251..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X deleted file mode 100644 index 0e845c5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X deleted file mode 100644 index 9265838..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z deleted file mode 100644 index a24ceaf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 deleted file mode 100644 index 0a9bd9a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 deleted file mode 100644 index 31d87a2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 deleted file mode 100644 index 50c4999..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 deleted file mode 100644 index 6832da8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 deleted file mode 100644 index c45b3ef..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 deleted file mode 100644 index e2b8e02..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 deleted file mode 100644 index 6a8ee99..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 deleted file mode 100644 index 7c81948..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 deleted file mode 100644 index 05db54f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A deleted file mode 100644 index 7db2a09..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B deleted file mode 100644 index 3f40130..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E deleted file mode 100644 index b0e5156..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E deleted file mode 100644 index 5e048c9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I deleted file mode 100644 index 449759a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J deleted file mode 100644 index 0d9a398..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M deleted file mode 100644 index 4f8cb00..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N deleted file mode 100644 index 876f7b0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N deleted file mode 100644 index 329d02e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N deleted file mode 100644 index 8ee734e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N deleted file mode 100644 index bbc3cd5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O deleted file mode 100644 index 52dbb67..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P deleted file mode 100644 index 573c4b3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P deleted file mode 100644 index 80b8762..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P deleted file mode 100644 index 365fcd7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q deleted file mode 100644 index 3bb906e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q deleted file mode 100644 index 4ba95d3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T deleted file mode 100644 index 9979885..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X deleted file mode 100644 index 1cacce4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 deleted file mode 100644 index 87c0d82..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 deleted file mode 100644 index c8d1f6e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 deleted file mode 100644 index 86079b7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 deleted file mode 100644 index 13e7a8d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 deleted file mode 100644 index b6ce923..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 deleted file mode 100644 index eb679f2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 deleted file mode 100644 index 210f96b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 deleted file mode 100644 index 92877c9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 deleted file mode 100644 index d572318..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 deleted file mode 100644 index 8bad9b8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 deleted file mode 100644 index 5916c8b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 deleted file mode 100644 index 5d85a0e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 deleted file mode 100644 index 416befd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A deleted file mode 100644 index c94ad0f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C deleted file mode 100644 index d107423..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C deleted file mode 100644 index 401c3f6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E deleted file mode 100644 index 895d6e5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E deleted file mode 100644 index c5e43eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E deleted file mode 100644 index b038767..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F deleted file mode 100644 index 35b4812..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H deleted file mode 100644 index 8484583..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I deleted file mode 100644 index c7be029..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N deleted file mode 100644 index f7f26c3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q deleted file mode 100644 index ebc4f3b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R deleted file mode 100644 index 5fcfa30..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R deleted file mode 100644 index 44803c8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S deleted file mode 100644 index 07dcd49..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S deleted file mode 100644 index 2bf1169..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S deleted file mode 100644 index c6876b2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S deleted file mode 100644 index e4b1b5e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V deleted file mode 100644 index 0c328f0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W deleted file mode 100644 index 54ebf16..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y deleted file mode 100644 index f2bc86d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 deleted file mode 100644 index 262ba18..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 deleted file mode 100644 index fad8d28..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 deleted file mode 100644 index 4ece05c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 deleted file mode 100644 index 6749e37..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 deleted file mode 100644 index 5861624..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 deleted file mode 100644 index 70fa602..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 deleted file mode 100644 index b4dbd3f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 deleted file mode 100644 index 9fe3fa1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 deleted file mode 100644 index 380db15..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 deleted file mode 100644 index f9b4d06..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A deleted file mode 100644 index 5047eb6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A deleted file mode 100644 index 22b3249..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E deleted file mode 100644 index 1eed699..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E deleted file mode 100644 index f3f1059..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E deleted file mode 100644 index 8cf3264..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E deleted file mode 100644 index 86ea927..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E deleted file mode 100644 index ad13c05..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G deleted file mode 100644 index 576be06..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H deleted file mode 100644 index c209f8f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H deleted file mode 100644 index f8e5d53..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I deleted file mode 100644 index 26ad779..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I deleted file mode 100644 index 0a6ee79..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J deleted file mode 100644 index 428d376..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K deleted file mode 100644 index dbc2c54..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L deleted file mode 100644 index 3e070be..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N deleted file mode 100644 index d66e284..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N deleted file mode 100644 index 54b874c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O deleted file mode 100644 index c838be9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R deleted file mode 100644 index f361f1b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R deleted file mode 100644 index 389e65a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S deleted file mode 100644 index 2658a1a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y deleted file mode 100644 index 82ea224..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z deleted file mode 100644 index 60bc4a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z deleted file mode 100644 index 6091df7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z deleted file mode 100644 index 277e767..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 deleted file mode 100644 index 9bfdcee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 deleted file mode 100644 index 7d9bcb4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 deleted file mode 100644 index cb0241c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 deleted file mode 100644 index e25aea0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 deleted file mode 100644 index ddf97ef..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 deleted file mode 100644 index 746b114..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 deleted file mode 100644 index e9ee484..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 deleted file mode 100644 index a0dc8aa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB deleted file mode 100644 index f6b2eb6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD deleted file mode 100644 index 06e7645..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF deleted file mode 100644 index 5a519ac..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG deleted file mode 100644 index a823a70..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG deleted file mode 100644 index 14543cf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG deleted file mode 100644 index 717c3b1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ deleted file mode 100644 index 2e2e836..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ deleted file mode 100644 index c76c0a2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL deleted file mode 100644 index 343d386..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM deleted file mode 100644 index 78f5d23..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM deleted file mode 100644 index dc78a0a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM deleted file mode 100644 index 84bc5cd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO deleted file mode 100644 index a4228c1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP deleted file mode 100644 index 2c2a455..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ deleted file mode 100644 index 5393ad2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ deleted file mode 100644 index ab82173..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ deleted file mode 100644 index 4d2ac38..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT deleted file mode 100644 index 838c4be..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT deleted file mode 100644 index 01a0389..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT deleted file mode 100644 index d250f5b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT deleted file mode 100644 index 079634e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU deleted file mode 100644 index 3072fcc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU deleted file mode 100644 index f6e6108..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW deleted file mode 100644 index 3562423..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW deleted file mode 100644 index d66edef..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX deleted file mode 100644 index 50dd6d3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX deleted file mode 100644 index ee7d1cc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY deleted file mode 100644 index fa91362..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ deleted file mode 100644 index ae2fbfe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ deleted file mode 100644 index 529c005..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 deleted file mode 100644 index b0fed79..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 deleted file mode 100644 index c08b2f5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 deleted file mode 100644 index 17d43a1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 deleted file mode 100644 index 9803275..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 deleted file mode 100644 index 7f5924b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 deleted file mode 100644 index 18b1c54..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA deleted file mode 100644 index 276b65c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA deleted file mode 100644 index de2efa3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB deleted file mode 100644 index 07f3f83..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB deleted file mode 100644 index 09633c1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC deleted file mode 100644 index c96ce93..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD deleted file mode 100644 index 316809e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD deleted file mode 100644 index 5a9d7e1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD deleted file mode 100644 index 02de3fa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE deleted file mode 100644 index 8fb64f8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG deleted file mode 100644 index 754bbdc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH deleted file mode 100644 index 1aa2aa5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH deleted file mode 100644 index 46c4a43..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ deleted file mode 100644 index bb27f4b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ deleted file mode 100644 index f9bab7e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK deleted file mode 100644 index c0db6bf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL deleted file mode 100644 index 9ef7f7c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL deleted file mode 100644 index 9b946c5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP deleted file mode 100644 index 50f0a18..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ deleted file mode 100644 index 8151f91..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ deleted file mode 100644 index 074a126..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR deleted file mode 100644 index 462e4ba..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS deleted file mode 100644 index 1f05727..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT deleted file mode 100644 index 4c7c78b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT deleted file mode 100644 index 894d506..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV deleted file mode 100644 index d23b640..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX deleted file mode 100644 index 9adbb60..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY deleted file mode 100644 index 467ff86..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY deleted file mode 100644 index e889031..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY deleted file mode 100644 index e9baa43..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 deleted file mode 100644 index f0ae61d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 deleted file mode 100644 index 7c9d232..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 deleted file mode 100644 index ffa1f52..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 deleted file mode 100644 index e8551d6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 deleted file mode 100644 index 5e21b19..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 deleted file mode 100644 index 4f21474..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 deleted file mode 100644 index 06eee31..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 deleted file mode 100644 index 9f6eef0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 deleted file mode 100644 index 2c2afe3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB deleted file mode 100644 index f4aa8bb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB deleted file mode 100644 index fabdbfd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC deleted file mode 100644 index ba56bee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD deleted file mode 100644 index 5a67bda..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF deleted file mode 100644 index 7991a14..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI deleted file mode 100644 index f3df3a0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI deleted file mode 100644 index 2a0f007..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK deleted file mode 100644 index 08bfafe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL deleted file mode 100644 index 6015d1a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN deleted file mode 100644 index 0ed72f0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN deleted file mode 100644 index 7d378d8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP deleted file mode 100644 index 96aafdd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP deleted file mode 100644 index 11ca7b2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ deleted file mode 100644 index ef1aaa4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR deleted file mode 100644 index c5bbb59..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR deleted file mode 100644 index fda3d92..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR deleted file mode 100644 index e202544..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT deleted file mode 100644 index 374489a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT deleted file mode 100644 index a0ce498..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT deleted file mode 100644 index 47a0e5a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV deleted file mode 100644 index 500a147..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW deleted file mode 100644 index 1dc59a0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW deleted file mode 100644 index 1538f7b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX deleted file mode 100644 index ce3fbfb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX deleted file mode 100644 index 966c6b0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY deleted file mode 100644 index cf36aae..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ deleted file mode 100644 index abf6f84..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 deleted file mode 100644 index ae76537..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 deleted file mode 100644 index 1067b53..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 deleted file mode 100644 index c3239c1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 deleted file mode 100644 index 17871d5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 deleted file mode 100644 index 984656c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 deleted file mode 100644 index 06b0431..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB deleted file mode 100644 index a3fae8d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC deleted file mode 100644 index daa2ba6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD deleted file mode 100644 index 559341b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE deleted file mode 100644 index ce97f80..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF deleted file mode 100644 index 7955fa0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF deleted file mode 100644 index ec2aa3f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG deleted file mode 100644 index f2428d9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG deleted file mode 100644 index 026c3fb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG deleted file mode 100644 index 8793a3b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG deleted file mode 100644 index bd2c21b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH deleted file mode 100644 index 1311245..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI deleted file mode 100644 index ea5e317..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ deleted file mode 100644 index 7043717..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ deleted file mode 100644 index 3c16be4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL deleted file mode 100644 index 7e5a047..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL deleted file mode 100644 index 210cec5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM deleted file mode 100644 index 48c83c9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN deleted file mode 100644 index 205dcc8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO deleted file mode 100644 index 62c96cb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO deleted file mode 100644 index e623db9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR deleted file mode 100644 index 20f82b8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS deleted file mode 100644 index 73b6eb3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU deleted file mode 100644 index 282cef0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX deleted file mode 100644 index b5c5ae5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX deleted file mode 100644 index de5325a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY deleted file mode 100644 index e60f47a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY deleted file mode 100644 index 3274f0b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 deleted file mode 100644 index c50b37c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 deleted file mode 100644 index e8541dd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 deleted file mode 100644 index 7950a47..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 deleted file mode 100644 index 384a5ea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 deleted file mode 100644 index 492a399..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 deleted file mode 100644 index 367a260..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 deleted file mode 100644 index f3765fc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 deleted file mode 100644 index 86faf28..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 deleted file mode 100644 index 5ce3e2c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA deleted file mode 100644 index da4615d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED deleted file mode 100644 index 175ce69..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF deleted file mode 100644 index f8a6eae..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF deleted file mode 100644 index 335af7b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH deleted file mode 100644 index 1ea602c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI deleted file mode 100644 index 887241f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK deleted file mode 100644 index de31f3f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL deleted file mode 100644 index 30fec6b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM deleted file mode 100644 index 93257b4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM deleted file mode 100644 index 854a2e4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN deleted file mode 100644 index ada09ad..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP deleted file mode 100644 index 25bf52d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP deleted file mode 100644 index d940b08..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ deleted file mode 100644 index 7a101c9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER deleted file mode 100644 index 7c04534..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER deleted file mode 100644 index ba23380..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER deleted file mode 100644 index 352bfd1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET deleted file mode 100644 index eea6ca3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU deleted file mode 100644 index 4f7dfc9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV deleted file mode 100644 index 22d127b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW deleted file mode 100644 index 6cf7918..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 deleted file mode 100644 index b8b046b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 deleted file mode 100644 index d1b83c0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 deleted file mode 100644 index 992a7de..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 deleted file mode 100644 index 200679a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 deleted file mode 100644 index 1214f89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 deleted file mode 100644 index 74e8b16..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 deleted file mode 100644 index 8e6eccb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 deleted file mode 100644 index 76e8da3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 deleted file mode 100644 index 91690d9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 deleted file mode 100644 index 99b3bea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 deleted file mode 100644 index e466016..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 deleted file mode 100644 index bbc9666..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 deleted file mode 100644 index d7a9428..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 deleted file mode 100644 index 5c4fb89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA deleted file mode 100644 index 4b53d2d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA deleted file mode 100644 index 738e4d2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD deleted file mode 100644 index 4c1f051..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE deleted file mode 100644 index d649bdc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE deleted file mode 100644 index 2ca274e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI deleted file mode 100644 index 7a07368..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK deleted file mode 100644 index 463cf3b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK deleted file mode 100644 index 3a73af2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK deleted file mode 100644 index 7101aaa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM deleted file mode 100644 index 5eebe0c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN deleted file mode 100644 index c4b21a9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ deleted file mode 100644 index ce8050f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS deleted file mode 100644 index ce4f65a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS deleted file mode 100644 index a096cee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS deleted file mode 100644 index f7f04f1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV deleted file mode 100644 index a64a372..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW deleted file mode 100644 index fe8ab82..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW deleted file mode 100644 index 43bf864..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX deleted file mode 100644 index 2b06ede..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX deleted file mode 100644 index 22887eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY deleted file mode 100644 index dff0a8e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ deleted file mode 100644 index c9eeaf2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ deleted file mode 100644 index 6c79289..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 deleted file mode 100644 index da6cae3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 deleted file mode 100644 index c6a9e0b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 deleted file mode 100644 index 6384e93..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 deleted file mode 100644 index 32adb89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 deleted file mode 100644 index ecd3234..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 deleted file mode 100644 index 55d79b3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 deleted file mode 100644 index a8d1b82..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 deleted file mode 100644 index c4ae13f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 deleted file mode 100644 index 31da2aa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 deleted file mode 100644 index 167736c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 deleted file mode 100644 index 33aaa89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB deleted file mode 100644 index a63ea11..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB deleted file mode 100644 index c3cea85..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC deleted file mode 100644 index 4f0a799..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC deleted file mode 100644 index d15fd65..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE deleted file mode 100644 index 307ca10..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE deleted file mode 100644 index b738694..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF deleted file mode 100644 index 560a27d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF deleted file mode 100644 index 3a10808..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF deleted file mode 100644 index f6b55dc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG deleted file mode 100644 index 321031a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH deleted file mode 100644 index d4ee4c5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI deleted file mode 100644 index 9522de4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI deleted file mode 100644 index 45a79ea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI deleted file mode 100644 index 1efd21a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL deleted file mode 100644 index 36238e1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN deleted file mode 100644 index a126530..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO deleted file mode 100644 index 1a3e01d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO deleted file mode 100644 index 4bff99e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO deleted file mode 100644 index c6eb519..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO deleted file mode 100644 index b0dbe28..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ deleted file mode 100644 index f3c6c4c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS deleted file mode 100644 index d6c5312..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT deleted file mode 100644 index 6a7ab98..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT deleted file mode 100644 index 455036b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY deleted file mode 100644 index 488da5c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 deleted file mode 100644 index ef15942..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 deleted file mode 100644 index ff6802a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 deleted file mode 100644 index c8b433f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 deleted file mode 100644 index 5c2c782..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 deleted file mode 100644 index 62cbd3f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 deleted file mode 100644 index 0da1314..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 deleted file mode 100644 index 7567236..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 deleted file mode 100644 index de2c99c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 deleted file mode 100644 index dc4a98d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 deleted file mode 100644 index 77893ea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 deleted file mode 100644 index 979dbbc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 deleted file mode 100644 index 66a6b05..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 deleted file mode 100644 index 1f2bc14..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 deleted file mode 100644 index 262743a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 deleted file mode 100644 index 1c0ab5e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA deleted file mode 100644 index e572bd4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC deleted file mode 100644 index fb0933b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG deleted file mode 100644 index a81ece2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH deleted file mode 100644 index f28aaef..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH deleted file mode 100644 index b9bd040..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH deleted file mode 100644 index 75dd34f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ deleted file mode 100644 index 2eaee68..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM deleted file mode 100644 index b4802a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM deleted file mode 100644 index 71354ea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM deleted file mode 100644 index 64250fc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO deleted file mode 100644 index 123d730..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO deleted file mode 100644 index 776fb4d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP deleted file mode 100644 index c878f89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP deleted file mode 100644 index 4e38d3d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU deleted file mode 100644 index 40cb754..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV deleted file mode 100644 index 2e8c89e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW deleted file mode 100644 index 5838215..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY deleted file mode 100644 index c02aa7e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ deleted file mode 100644 index bf62572..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ deleted file mode 100644 index c9887cc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 deleted file mode 100644 index 901c801..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 deleted file mode 100644 index 6004312..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 deleted file mode 100644 index 277c389..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 deleted file mode 100644 index 9f76f90..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 deleted file mode 100644 index 5b4dd70..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 deleted file mode 100644 index fb78609..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 deleted file mode 100644 index d948f59..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 deleted file mode 100644 index bb5ba96..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 deleted file mode 100644 index 0d1945e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 deleted file mode 100644 index 9948923..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB deleted file mode 100644 index 6a3d0d4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID deleted file mode 100644 index f4ec351..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH deleted file mode 100644 index c10908e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II deleted file mode 100644 index a8035ee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ deleted file mode 100644 index 8b9f1a3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK deleted file mode 100644 index 61dc887..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK deleted file mode 100644 index 41e59a8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL deleted file mode 100644 index 318e8eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL deleted file mode 100644 index d212048..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM deleted file mode 100644 index 3225789..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP deleted file mode 100644 index 12e45be..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP deleted file mode 100644 index f90ae8e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP deleted file mode 100644 index f014ff2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR deleted file mode 100644 index 483cee5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR deleted file mode 100644 index 3a8a528..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR deleted file mode 100644 index 22331cc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS deleted file mode 100644 index 24e5639..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT deleted file mode 100644 index fcda57f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW deleted file mode 100644 index 975f9b5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW deleted file mode 100644 index bbdce81..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW deleted file mode 100644 index 9d5996b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW deleted file mode 100644 index 5dc4af3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX deleted file mode 100644 index 114edba..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 deleted file mode 100644 index 9c39ad4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 deleted file mode 100644 index 954ccab..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 deleted file mode 100644 index 23791ed..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 deleted file mode 100644 index bb18797..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 deleted file mode 100644 index 46a1cc1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 deleted file mode 100644 index 418d7f9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 deleted file mode 100644 index 9017b56..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 deleted file mode 100644 index 6bb01fe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 deleted file mode 100644 index ab0130a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 deleted file mode 100644 index f3fca6d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 deleted file mode 100644 index eb99a1e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 deleted file mode 100644 index 9e96d89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA deleted file mode 100644 index d54fc90..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD deleted file mode 100644 index e416433..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE deleted file mode 100644 index 66d0e68..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE deleted file mode 100644 index 3373be9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE deleted file mode 100644 index dfd5c5a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF deleted file mode 100644 index a6707a2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG deleted file mode 100644 index c7a589d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI deleted file mode 100644 index 3c2a974..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI deleted file mode 100644 index 288e974..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI deleted file mode 100644 index 912d5a0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ deleted file mode 100644 index 3ec34bf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL deleted file mode 100644 index 173f16f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM deleted file mode 100644 index b0fbcf6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM deleted file mode 100644 index 025965f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP deleted file mode 100644 index b0e192f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP deleted file mode 100644 index 0d50bb9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP deleted file mode 100644 index e13babe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP deleted file mode 100644 index c6a19a8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP deleted file mode 100644 index 8a82aa6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ deleted file mode 100644 index 1502529..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR deleted file mode 100644 index 6626800..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS deleted file mode 100644 index 14e5496..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS deleted file mode 100644 index fa46766..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU deleted file mode 100644 index 6cef17b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW deleted file mode 100644 index e41ae54..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX deleted file mode 100644 index e17ca97..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY deleted file mode 100644 index f8eef19..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 deleted file mode 100644 index e861ed8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 deleted file mode 100644 index 3d70282..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 deleted file mode 100644 index 31cc150..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 deleted file mode 100644 index d9bdb0d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 deleted file mode 100644 index c57d809..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 deleted file mode 100644 index 4c5b971..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 deleted file mode 100644 index 492805c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 deleted file mode 100644 index ad244e2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 deleted file mode 100644 index 84e81a8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA deleted file mode 100644 index acb3f2a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA deleted file mode 100644 index 8f02097..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB deleted file mode 100644 index 643c677..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB deleted file mode 100644 index c2d4287..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB deleted file mode 100644 index c8b02f5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB deleted file mode 100644 index ab4c5af..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB deleted file mode 100644 index 40bcd70..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE deleted file mode 100644 index 1f50de1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE deleted file mode 100644 index 19c8766..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE deleted file mode 100644 index 864e8a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG deleted file mode 100644 index d373562..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG deleted file mode 100644 index 8bd0205..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI deleted file mode 100644 index ecd36e5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ deleted file mode 100644 index 98f98f5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ deleted file mode 100644 index 2b529df..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ deleted file mode 100644 index 7e09404..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ deleted file mode 100644 index b83d887..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL deleted file mode 100644 index 158fa28..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM deleted file mode 100644 index c11b623..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN deleted file mode 100644 index 74b1601..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN deleted file mode 100644 index 406ea94..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN deleted file mode 100644 index 28113ef..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP deleted file mode 100644 index 6bbe539..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR deleted file mode 100644 index 11bf305..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR deleted file mode 100644 index 9aee30a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS deleted file mode 100644 index a7b344a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS deleted file mode 100644 index 0c28d16..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT deleted file mode 100644 index 51b7aae..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU deleted file mode 100644 index a04bf4f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV deleted file mode 100644 index 6591ce0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 deleted file mode 100644 index bbd774e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 deleted file mode 100644 index 6339774..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 deleted file mode 100644 index 176b67f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 deleted file mode 100644 index bb61bb1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 deleted file mode 100644 index 3274f6f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 deleted file mode 100644 index 970ac07..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 deleted file mode 100644 index 9332050..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 deleted file mode 100644 index 647d290..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 deleted file mode 100644 index c750605..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 deleted file mode 100644 index ca40424..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA deleted file mode 100644 index 8b3c16b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA deleted file mode 100644 index 15fa85d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC deleted file mode 100644 index b0ce020..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE deleted file mode 100644 index cdfecc3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE deleted file mode 100644 index b3680a3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG deleted file mode 100644 index 94d0c7a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH deleted file mode 100644 index 6c153ec..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH deleted file mode 100644 index e1c63db..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI deleted file mode 100644 index ab0b805..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ deleted file mode 100644 index d4c35ea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN deleted file mode 100644 index b22ea13..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO deleted file mode 100644 index f2ba87c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO deleted file mode 100644 index 96bf919..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP deleted file mode 100644 index 34f9f70..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ deleted file mode 100644 index 2fbac45..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW deleted file mode 100644 index d4059b6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX deleted file mode 100644 index f1c913d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY deleted file mode 100644 index f10b5be..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 deleted file mode 100644 index f975567..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 deleted file mode 100644 index 7b948a2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 deleted file mode 100644 index 946160e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 deleted file mode 100644 index ff02904..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 deleted file mode 100644 index 69767c0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 deleted file mode 100644 index d4f0220..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 deleted file mode 100644 index 43ddfb2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 deleted file mode 100644 index efdd5fc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 deleted file mode 100644 index 449a3cd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 deleted file mode 100644 index 2aa41bf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 deleted file mode 100644 index 5868009..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 deleted file mode 100644 index 785257d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 deleted file mode 100644 index 14c62fd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA deleted file mode 100644 index 6f82d01..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB deleted file mode 100644 index 25903cd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC deleted file mode 100644 index df37c8f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF deleted file mode 100644 index f9e7967..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG deleted file mode 100644 index e3dc037..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH deleted file mode 100644 index c0e4de4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH deleted file mode 100644 index 59ea876..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH deleted file mode 100644 index 11585f9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ deleted file mode 100644 index 1d2d2ee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ deleted file mode 100644 index faef055..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN deleted file mode 100644 index be64bc4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN deleted file mode 100644 index fe4d932..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO deleted file mode 100644 index 3853c6d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP deleted file mode 100644 index e072794..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ deleted file mode 100644 index f642c21..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ deleted file mode 100644 index 9d4e48c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS deleted file mode 100644 index 0615a59..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS deleted file mode 100644 index e115798..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS deleted file mode 100644 index 54e9907..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT deleted file mode 100644 index 532347c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU deleted file mode 100644 index 8b2faa0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX deleted file mode 100644 index 065e1c3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ deleted file mode 100644 index 19f655e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ deleted file mode 100644 index 54da647..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 deleted file mode 100644 index f250f70..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 deleted file mode 100644 index 77ae94d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 deleted file mode 100644 index 8611299..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 deleted file mode 100644 index 1a4f4a7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 deleted file mode 100644 index f97f215..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 deleted file mode 100644 index 27adc6b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA deleted file mode 100644 index 58dcc1f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB deleted file mode 100644 index 31912fa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND deleted file mode 100644 index fe53ac0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND deleted file mode 100644 index 283bf71..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE deleted file mode 100644 index 2801b0f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF deleted file mode 100644 index b08dbdd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF deleted file mode 100644 index 9dccab4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF deleted file mode 100644 index 320deee..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG deleted file mode 100644 index 5255215..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH deleted file mode 100644 index 3a0d542..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH deleted file mode 100644 index e727fa3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI deleted file mode 100644 index 2307d22..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ deleted file mode 100644 index 110ddf5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ deleted file mode 100644 index 687ccd8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ deleted file mode 100644 index 8c729c2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ deleted file mode 100644 index 183bf05..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK deleted file mode 100644 index 3d72fdd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK deleted file mode 100644 index 79330de..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL deleted file mode 100644 index 509c707..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM deleted file mode 100644 index a84d8d7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO deleted file mode 100644 index cf2324a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP deleted file mode 100644 index 887048b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR deleted file mode 100644 index d61e8fc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR deleted file mode 100644 index 92947dd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR deleted file mode 100644 index a317957..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW deleted file mode 100644 index f8ac640..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX deleted file mode 100644 index 745df8d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY deleted file mode 100644 index 9d9b667..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY deleted file mode 100644 index c2a9a37..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ deleted file mode 100644 index 814a3c5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 deleted file mode 100644 index a851033..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 deleted file mode 100644 index bbe353f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 deleted file mode 100644 index 16a7374..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 deleted file mode 100644 index 2ca1025..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 deleted file mode 100644 index 0261331..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 deleted file mode 100644 index 1238138..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 deleted file mode 100644 index 539edb0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 deleted file mode 100644 index af8a382..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 deleted file mode 100644 index af7fe2c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA deleted file mode 100644 index 45d0e6f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC deleted file mode 100644 index d033974..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC deleted file mode 100644 index 831c0f7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC deleted file mode 100644 index 1a36c22..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE deleted file mode 100644 index 49a5e86..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE deleted file mode 100644 index a55ade7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE deleted file mode 100644 index d2bf994..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE deleted file mode 100644 index 3d80826..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF deleted file mode 100644 index 6ff7cbe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH deleted file mode 100644 index fe2cb47..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH deleted file mode 100644 index e69f781..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ deleted file mode 100644 index 1245aea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ deleted file mode 100644 index 311a96f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK deleted file mode 100644 index e000922..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM deleted file mode 100644 index e00f5d4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO deleted file mode 100644 index 35866a0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO deleted file mode 100644 index db0fdcb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP deleted file mode 100644 index 98e32a7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR deleted file mode 100644 index 7ab7b72..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR deleted file mode 100644 index e55d377..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT deleted file mode 100644 index 4d6c93a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU deleted file mode 100644 index 0b8ee9b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU deleted file mode 100644 index a555079..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW deleted file mode 100644 index a6574eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX deleted file mode 100644 index 25204c4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY deleted file mode 100644 index b8d5c7e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ deleted file mode 100644 index 860b836..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 deleted file mode 100644 index 2d16f1a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 deleted file mode 100644 index 6a82d6a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 deleted file mode 100644 index 8645d06..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 deleted file mode 100644 index 5fd5375..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 deleted file mode 100644 index 1281744..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 deleted file mode 100644 index 2edef90..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB deleted file mode 100644 index 4ec958b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC deleted file mode 100644 index 88787c3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD deleted file mode 100644 index 7a56f1d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE deleted file mode 100644 index afd364e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG deleted file mode 100644 index 04c5590..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG deleted file mode 100644 index 6fce1f3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH deleted file mode 100644 index 0f0b4e7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH deleted file mode 100644 index 7231991..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM deleted file mode 100644 index b649fbf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN deleted file mode 100644 index 2c364de..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP deleted file mode 100644 index e4db422..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP deleted file mode 100644 index 1b7f00e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU deleted file mode 100644 index a759ac1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU deleted file mode 100644 index d7baba6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX deleted file mode 100644 index 9297890..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 deleted file mode 100644 index af217a0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 deleted file mode 100644 index 8c5a92b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 deleted file mode 100644 index ac5a387..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 deleted file mode 100644 index 513ef16..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 deleted file mode 100644 index bd5de72..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 deleted file mode 100644 index b12fb8a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 deleted file mode 100644 index c42ce5c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 deleted file mode 100644 index 742bd70..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 deleted file mode 100644 index bce863e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 deleted file mode 100644 index f89345b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 deleted file mode 100644 index 8d39233..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA deleted file mode 100644 index 7077d63..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC deleted file mode 100644 index 46fedd3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD deleted file mode 100644 index 930725e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE deleted file mode 100644 index 4ce52eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH deleted file mode 100644 index 629a4e2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH deleted file mode 100644 index 3d8a18f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH deleted file mode 100644 index c1b7eaa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH deleted file mode 100644 index a24b632..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM deleted file mode 100644 index c8a68a7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO deleted file mode 100644 index 17a818b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO deleted file mode 100644 index 1619f41..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP deleted file mode 100644 index 82e3682..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ deleted file mode 100644 index 407e98d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR deleted file mode 100644 index 1c13152..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR deleted file mode 100644 index 2fa551f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR deleted file mode 100644 index c8d0d92..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW deleted file mode 100644 index 3bedd50..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW deleted file mode 100644 index f63d9f0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX deleted file mode 100644 index 0ccceb7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 deleted file mode 100644 index 8fb1d8b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 deleted file mode 100644 index bb8fef5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 deleted file mode 100644 index d3d6e0b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 deleted file mode 100644 index 6bd921c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 deleted file mode 100644 index bf8444f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 deleted file mode 100644 index cc35153..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 deleted file mode 100644 index 14d279a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 deleted file mode 100644 index 7e6da69..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA deleted file mode 100644 index f2b4835..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA deleted file mode 100644 index 083b7d6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD deleted file mode 100644 index b2a7e49..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD deleted file mode 100644 index ca7a120..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF deleted file mode 100644 index 39337eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF deleted file mode 100644 index 1db2467..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH deleted file mode 100644 index 4a5f2a2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH deleted file mode 100644 index 7d27822..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH deleted file mode 100644 index d936087..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH deleted file mode 100644 index 9450f23..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI deleted file mode 100644 index 301cc2b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ deleted file mode 100644 index bb0a81a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN deleted file mode 100644 index e5fdea2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO deleted file mode 100644 index d1431d7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP deleted file mode 100644 index cefb4e6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ deleted file mode 100644 index c13baa9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ deleted file mode 100644 index 48acd71..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR deleted file mode 100644 index 0b49caf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR deleted file mode 100644 index 7c47e64..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV deleted file mode 100644 index 6f2a62a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV deleted file mode 100644 index a735400..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV deleted file mode 100644 index 5d51994..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY deleted file mode 100644 index fd18b99..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ deleted file mode 100644 index 20a9dfd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 deleted file mode 100644 index 01be1b4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 deleted file mode 100644 index 145e895..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 deleted file mode 100644 index b2b73b5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 deleted file mode 100644 index af52021..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 deleted file mode 100644 index 7c5ff63..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 deleted file mode 100644 index 324c630..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 deleted file mode 100644 index 9f7ce0a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 deleted file mode 100644 index bc7d2bc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA deleted file mode 100644 index 3630258..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC deleted file mode 100644 index 9da8058..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE deleted file mode 100644 index 94f0371..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG deleted file mode 100644 index 2ec9437..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG deleted file mode 100644 index b086849..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI deleted file mode 100644 index f74bb30..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI deleted file mode 100644 index a3c5891..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI deleted file mode 100644 index c0c6a03..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI deleted file mode 100644 index da580a1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ deleted file mode 100644 index e11ba63..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK deleted file mode 100644 index cbc68f6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL deleted file mode 100644 index 5d52267..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR deleted file mode 100644 index 7f96087..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV deleted file mode 100644 index 2254cd9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 deleted file mode 100644 index 9fa1e53..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 deleted file mode 100644 index a210c18..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 deleted file mode 100644 index f600049..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 deleted file mode 100644 index 3f784fd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 deleted file mode 100644 index 08804a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 deleted file mode 100644 index 32b3512..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 deleted file mode 100644 index 500364b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 deleted file mode 100644 index 1e2f36c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 deleted file mode 100644 index b0cfbd8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 deleted file mode 100644 index c773c00..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 deleted file mode 100644 index 4b159d0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 deleted file mode 100644 index a1bd6ba..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 deleted file mode 100644 index bbf274c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 deleted file mode 100644 index 43c9a93..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 deleted file mode 100644 index bcefb87..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 deleted file mode 100644 index 5aa7b8f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 deleted file mode 100644 index ae2d979..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 deleted file mode 100644 index c7c1146..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA deleted file mode 100644 index d4076b9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA deleted file mode 100644 index 1c5a675..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB deleted file mode 100644 index cbee880..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC deleted file mode 100644 index a28655a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC deleted file mode 100644 index 3918bed..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC deleted file mode 100644 index 0f6e627..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD deleted file mode 100644 index 6c5d4f7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG deleted file mode 100644 index f13728a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG deleted file mode 100644 index f62ce29..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI deleted file mode 100644 index 5d1b1dc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK deleted file mode 100644 index 29e1a21..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM deleted file mode 100644 index 98a7eea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP deleted file mode 100644 index c098247..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ deleted file mode 100644 index 498666e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ deleted file mode 100644 index b97090a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR deleted file mode 100644 index 625e5a1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS deleted file mode 100644 index 5a0e311..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT deleted file mode 100644 index 34ca26f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT deleted file mode 100644 index 6e1479e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU deleted file mode 100644 index 2187700..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV deleted file mode 100644 index afff976..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW deleted file mode 100644 index 5a2e0dd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY deleted file mode 100644 index 96edce7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 deleted file mode 100644 index c26d811..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 deleted file mode 100644 index 7e9d6e5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 deleted file mode 100644 index e14c025..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 deleted file mode 100644 index 471548d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 deleted file mode 100644 index add69a0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 deleted file mode 100644 index 67597a1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 deleted file mode 100644 index a65162c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 deleted file mode 100644 index 2401bb1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 deleted file mode 100644 index 4a43a82..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 deleted file mode 100644 index 7338a3a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 deleted file mode 100644 index 4cd3afd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 deleted file mode 100644 index ea751c4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA deleted file mode 100644 index 26a428a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA deleted file mode 100644 index 4be0987..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA deleted file mode 100644 index df05d54..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB deleted file mode 100644 index ff2f313..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC deleted file mode 100644 index 6e9ce82..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD deleted file mode 100644 index 42ad46c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD deleted file mode 100644 index 0456eb3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF deleted file mode 100644 index dd67602..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF deleted file mode 100644 index b683d45..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG deleted file mode 100644 index 49444e0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH deleted file mode 100644 index f5344ed..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK deleted file mode 100644 index f3cb140..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM deleted file mode 100644 index a9c6664..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM deleted file mode 100644 index 2348687..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN deleted file mode 100644 index 1c2c361..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN deleted file mode 100644 index 7b4238a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN deleted file mode 100644 index 6a37e84..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP deleted file mode 100644 index ae493f3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR deleted file mode 100644 index e0d0e9f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR deleted file mode 100644 index 81b09e0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS deleted file mode 100644 index 464813f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT deleted file mode 100644 index 24419e8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV deleted file mode 100644 index 28fb61c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV deleted file mode 100644 index b954e17..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW deleted file mode 100644 index 593acff..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX deleted file mode 100644 index fe906b3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 deleted file mode 100644 index 2af60df..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 deleted file mode 100644 index 754449c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 deleted file mode 100644 index 79cd522..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 deleted file mode 100644 index 602760e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 deleted file mode 100644 index 4b40daf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 deleted file mode 100644 index 070a6aa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA deleted file mode 100644 index 47ee1a9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB deleted file mode 100644 index 5d6320d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD deleted file mode 100644 index 0598add..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF deleted file mode 100644 index bda2f80..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH deleted file mode 100644 index a1ea006..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ deleted file mode 100644 index 3b015fa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK deleted file mode 100644 index 8a46523..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN deleted file mode 100644 index b7aef16..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN deleted file mode 100644 index 302681a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO deleted file mode 100644 index cf5f422..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO deleted file mode 100644 index de03261..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO deleted file mode 100644 index 9445b63..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ deleted file mode 100644 index 801bd67..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR deleted file mode 100644 index 4d61cae..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU deleted file mode 100644 index bc5c92e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU deleted file mode 100644 index ffbc0d1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV deleted file mode 100644 index 31b9890..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW deleted file mode 100644 index 93e6b21..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 deleted file mode 100644 index 08cf58a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 deleted file mode 100644 index 4d16f48..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 deleted file mode 100644 index 61db7bd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 deleted file mode 100644 index 3dedfe2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 deleted file mode 100644 index e221004..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 deleted file mode 100644 index 1e2d9a8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 deleted file mode 100644 index 9b51892..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 deleted file mode 100644 index 44bf47b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 deleted file mode 100644 index bd23051..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA deleted file mode 100644 index b3815ea..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD deleted file mode 100644 index 3411a21..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE deleted file mode 100644 index 3dfeb86..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE deleted file mode 100644 index fdb1bf6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG deleted file mode 100644 index 9d1f5af..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG deleted file mode 100644 index c9295da..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI deleted file mode 100644 index a0d7f3c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI deleted file mode 100644 index a7cf809..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI deleted file mode 100644 index 0eba9a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK deleted file mode 100644 index ef6c4a4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK deleted file mode 100644 index 1de5d0c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM deleted file mode 100644 index c64bd83..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO deleted file mode 100644 index b4303e5..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO deleted file mode 100644 index 8896cfe..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP deleted file mode 100644 index 7194a03..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR deleted file mode 100644 index f37bf98..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR deleted file mode 100644 index 9bb3941..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT deleted file mode 100644 index 188c2a2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU deleted file mode 100644 index 1fed6c6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV deleted file mode 100644 index 73c06c8..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW deleted file mode 100644 index 8ce78e6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX deleted file mode 100644 index 6a3facd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ deleted file mode 100644 index 5a97458..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 deleted file mode 100644 index 9e9ff6e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 deleted file mode 100644 index 68e3081..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 deleted file mode 100644 index a058bc3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 deleted file mode 100644 index fb78df3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC deleted file mode 100644 index 81980ed..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF deleted file mode 100644 index cc8e14e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG deleted file mode 100644 index 2a20fb3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG deleted file mode 100644 index c4040c1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK deleted file mode 100644 index cc08a59..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM deleted file mode 100644 index eabeffc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM deleted file mode 100644 index bc09720..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO deleted file mode 100644 index 229e7ba..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO deleted file mode 100644 index d5e8abb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP deleted file mode 100644 index 16082d9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP deleted file mode 100644 index 6395fda..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ deleted file mode 100644 index 0ed717a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR deleted file mode 100644 index 2b10d00..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR deleted file mode 100644 index 902a1dd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU deleted file mode 100644 index c337502..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV deleted file mode 100644 index 2255a6c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX deleted file mode 100644 index 6ebac89..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX deleted file mode 100644 index 28ca2a6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY deleted file mode 100644 index 54c8ded..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 deleted file mode 100644 index 6f0c817..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 deleted file mode 100644 index bf3245a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 deleted file mode 100644 index 0c9ffed..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 deleted file mode 100644 index a575d81..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 deleted file mode 100644 index ed2df11..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 deleted file mode 100644 index 006f166..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 deleted file mode 100644 index 4ecac1f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 deleted file mode 100644 index cdeb6de..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 deleted file mode 100644 index eeb91d7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 deleted file mode 100644 index 6c772a2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE deleted file mode 100644 index e993166..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG deleted file mode 100644 index 3f49555..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH deleted file mode 100644 index 5b1f9c9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ deleted file mode 100644 index 03db300..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR deleted file mode 100644 index 6bc333c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT deleted file mode 100644 index fda9bef..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT deleted file mode 100644 index 499eb63..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU deleted file mode 100644 index 549d575..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV deleted file mode 100644 index 02aca3b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV deleted file mode 100644 index e5b0e2a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV deleted file mode 100644 index 6848f18..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW deleted file mode 100644 index 49f79d7..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW deleted file mode 100644 index 539681c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW deleted file mode 100644 index d146012..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW deleted file mode 100644 index 168f297..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX deleted file mode 100644 index 2cc39a9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY deleted file mode 100644 index fbdd550..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY deleted file mode 100644 index fb9d08b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY deleted file mode 100644 index b52db97..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 deleted file mode 100644 index 80ac77f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 deleted file mode 100644 index d786447..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 deleted file mode 100644 index ef379ce..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 deleted file mode 100644 index 90bc7b1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 deleted file mode 100644 index b9279be..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 deleted file mode 100644 index 9cc9ca6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 deleted file mode 100644 index 7b6e0be..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 deleted file mode 100644 index 74136d4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 deleted file mode 100644 index c9b32ca..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 deleted file mode 100644 index b43d449..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB deleted file mode 100644 index 02c2631..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB deleted file mode 100644 index 8640e31..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC deleted file mode 100644 index 6e097c1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC deleted file mode 100644 index f5d62e3..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC deleted file mode 100644 index 420075c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD deleted file mode 100644 index fb252b1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE deleted file mode 100644 index fee6ff6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE deleted file mode 100644 index 2f30076..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG deleted file mode 100644 index f459cdc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG deleted file mode 100644 index da29210..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG deleted file mode 100644 index 24dd7fb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH deleted file mode 100644 index f8ad16f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ deleted file mode 100644 index c2f6c6a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO deleted file mode 100644 index 617bcdf..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP deleted file mode 100644 index dd58815..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR deleted file mode 100644 index f04f995..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR deleted file mode 100644 index 6a51c98..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR deleted file mode 100644 index 58c848f..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS deleted file mode 100644 index 0629187..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW deleted file mode 100644 index 65eb0b4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX deleted file mode 100644 index cd88664..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX deleted file mode 100644 index f799da1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY deleted file mode 100644 index 34817bd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ deleted file mode 100644 index 035a980..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ deleted file mode 100644 index 44a6435..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-1L7S5F2WM8YQZ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-1L7S5F2WM8YQZ deleted file mode 100644 index f241d31..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-1L7S5F2WM8YQZ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-FLZLEK85BKL b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-FLZLEK85BKL deleted file mode 100644 index 4c20a3e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-FLZLEK85BKL and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-ICMO3R2MSCV4 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-ICMO3R2MSCV4 deleted file mode 100644 index 09a5b4e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-ICMO3R2MSCV4 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-13098BJMCYIXO b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-13098BJMCYIXO deleted file mode 100644 index f7f6182..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-13098BJMCYIXO and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2RCTVQ4WQ9E27 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2RCTVQ4WQ9E27 deleted file mode 100644 index 575b5cd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2RCTVQ4WQ9E27 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-2MQEQS0A23NBK b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-2MQEQS0A23NBK deleted file mode 100644 index 26bd7eb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-2MQEQS0A23NBK and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-ECC8XMVUK0PI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-ECC8XMVUK0PI deleted file mode 100644 index 08ef7cc..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-ECC8XMVUK0PI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-1XGKQ33LBPDAQ b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-1XGKQ33LBPDAQ deleted file mode 100644 index 3442323..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-1XGKQ33LBPDAQ and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3042EQ4M67KR6 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3042EQ4M67KR6 deleted file mode 100644 index f999e8b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3042EQ4M67KR6 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1L9M9JSVXVEVX b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1L9M9JSVXVEVX deleted file mode 100644 index adeed06..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1L9M9JSVXVEVX and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-2LZTXM7CJL8U2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-2LZTXM7CJL8U2 deleted file mode 100644 index e63102e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-2LZTXM7CJL8U2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3KWLPWPD0CVEA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3KWLPWPD0CVEA deleted file mode 100644 index 6150615..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3KWLPWPD0CVEA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-19MTBOJ3ZCEZ8 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-19MTBOJ3ZCEZ8 deleted file mode 100644 index 75ad5cd..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-19MTBOJ3ZCEZ8 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-307821A1XFK3Y b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-307821A1XFK3Y deleted file mode 100644 index 15def6a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-307821A1XFK3Y and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-29VDBQDRGCZYP b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-29VDBQDRGCZYP deleted file mode 100644 index a81cf4d..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-29VDBQDRGCZYP and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-3U410J9DLKXDI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-3U410J9DLKXDI deleted file mode 100644 index d043fff..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-3U410J9DLKXDI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-1RVYJA1KOOVDI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-1RVYJA1KOOVDI deleted file mode 100644 index 949f8aa..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-1RVYJA1KOOVDI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-78YHO4WWFS85 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-78YHO4WWFS85 deleted file mode 100644 index 9cce607..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-78YHO4WWFS85 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-196F5W6KNK8VR b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-196F5W6KNK8VR deleted file mode 100644 index 072d0e2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-196F5W6KNK8VR and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-NNW307QRRR1H b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-NNW307QRRR1H deleted file mode 100644 index 0ae20bb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-NNW307QRRR1H and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2JL500M36ILD5 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2JL500M36ILD5 deleted file mode 100644 index 7a4bb98..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2JL500M36ILD5 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-6ZGZ5OGYAOY0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-6ZGZ5OGYAOY0 deleted file mode 100644 index 3db477a..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-6ZGZ5OGYAOY0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-UTWB186W1UIS b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-UTWB186W1UIS deleted file mode 100644 index f395bd4..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-UTWB186W1UIS and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-2FVMNX8H1KE2K b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-2FVMNX8H1KE2K deleted file mode 100644 index 170486c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-2FVMNX8H1KE2K and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-3SZ538YLSR7L2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-3SZ538YLSR7L2 deleted file mode 100644 index 35c9e92..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-3SZ538YLSR7L2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 deleted file mode 100644 index 0dbc06e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM deleted file mode 100644 index 646f8e9..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 deleted file mode 100644 index 7e3f2ec..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 deleted file mode 100644 index ea6f67c..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G deleted file mode 100644 index 615e517..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA deleted file mode 100644 index 55f712b..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC deleted file mode 100644 index 29d6c55..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 deleted file mode 100644 index f17f4d2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 deleted file mode 100644 index 977aeeb..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 deleted file mode 100644 index f8fabe1..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND deleted file mode 100644 index 7d77de0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V deleted file mode 100644 index f858166..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC deleted file mode 100644 index 1fae0d6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 deleted file mode 100644 index e2dcab0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF deleted file mode 100644 index 29bfe72..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-2JY9OLKLK4PF2 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-2JY9OLKLK4PF2 deleted file mode 100644 index 58d51f6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-2JY9OLKLK4PF2 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-2QUH0GSPTRKJ0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-2QUH0GSPTRKJ0 deleted file mode 100644 index 44bfe2e..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-2QUH0GSPTRKJ0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3CPHZN8J5CHCA b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3CPHZN8J5CHCA deleted file mode 100644 index d1fa780..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3CPHZN8J5CHCA and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-1TTIXRZ05PYB0 b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-1TTIXRZ05PYB0 deleted file mode 100644 index 5c09dde..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-1TTIXRZ05PYB0 and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-BDBGUHZDRHPI b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-BDBGUHZDRHPI deleted file mode 100644 index 5c364b0..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-BDBGUHZDRHPI and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-C1QGNXO8ET4Z b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-C1QGNXO8ET4Z deleted file mode 100644 index 4cf3dc2..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-C1QGNXO8ET4Z and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-6J6QXZIRKBND b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-6J6QXZIRKBND deleted file mode 100644 index 270d850..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-6J6QXZIRKBND and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-3UBK9SNAGLG4F b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-3UBK9SNAGLG4F deleted file mode 100644 index b5aa1b6..0000000 Binary files a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-3UBK9SNAGLG4F and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/plugin-tools-description.json b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/plugin-tools-description.json deleted file mode 100644 index b35fa6d..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/plugin-tools-description.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt b/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt deleted file mode 100644 index caf9e2b..0000000 --- a/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt +++ /dev/null @@ -1,2 +0,0 @@ -Apple Swift version 6.3.2 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -Target: arm64-apple-macosx26.0 diff --git a/packages/apple/VelodyDomain/.build/build.db b/packages/apple/VelodyDomain/.build/build.db deleted file mode 100644 index 44e8e2d..0000000 Binary files a/packages/apple/VelodyDomain/.build/build.db and /dev/null differ diff --git a/packages/apple/VelodyDomain/.build/debug b/packages/apple/VelodyDomain/.build/debug deleted file mode 120000 index 9733fca..0000000 --- a/packages/apple/VelodyDomain/.build/debug +++ /dev/null @@ -1 +0,0 @@ -arm64-apple-macosx/debug \ No newline at end of file diff --git a/packages/apple/VelodyDomain/.build/debug.yaml b/packages/apple/VelodyDomain/.build/debug.yaml deleted file mode 100644 index 5511850..0000000 --- a/packages/apple/VelodyDomain/.build/debug.yaml +++ /dev/null @@ -1,47 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyDomain/.build/plugin-tools.yaml b/packages/apple/VelodyDomain/.build/plugin-tools.yaml deleted file mode 100644 index 5511850..0000000 --- a/packages/apple/VelodyDomain/.build/plugin-tools.yaml +++ /dev/null @@ -1,47 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyDomain/.build/workspace-state.json b/packages/apple/VelodyDomain/.build/workspace-state.json deleted file mode 100644 index 7c0cb06..0000000 --- a/packages/apple/VelodyDomain/.build/workspace-state.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "object" : { - "artifacts" : [ - - ], - "dependencies" : [ - - ], - "prebuilts" : [ - - ] - }, - "version" : 7 -} \ No newline at end of file diff --git a/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift b/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift index aa61068..98d35d2 100644 --- a/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift +++ b/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift @@ -6,21 +6,30 @@ public enum DevicePlatform: String, Codable, Sendable, CaseIterable { } public struct LibraryTrack: Identifiable, Codable, Hashable, Sendable { - public let id: UUID + public let id: String public var title: String public var artist: String public var album: String? + public var durationSeconds: Double? + public var localFilePath: String + public var sha256: String? public init( - id: UUID = UUID(), + id: String = UUID().uuidString, title: String, - artist: String, - album: String? = nil + artist: String = "Unknown Artist", + album: String? = nil, + durationSeconds: Double? = nil, + localFilePath: String = "", + sha256: String? = nil ) { self.id = id self.title = title self.artist = artist self.album = album + self.durationSeconds = durationSeconds + self.localFilePath = localFilePath + self.sha256 = sha256 } } diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm deleted file mode 100644 index 7ebba58..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm deleted file mode 100644 index 4ec68cd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm deleted file mode 100644 index a169cdd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm deleted file mode 100644 index 7c3ed49..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm deleted file mode 100644 index 7f73b57..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm deleted file mode 100644 index 2c8b96f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm deleted file mode 100644 index 396be7c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm deleted file mode 100644 index 7653f35..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm deleted file mode 100644 index e57da9e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm deleted file mode 100644 index 8f3a87b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm deleted file mode 100644 index dd3d13f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 632d2bd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm deleted file mode 100644 index b43039a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm deleted file mode 100644 index 0987a17..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 78d7591..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 51892ad..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index d109f46..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 4b0b700..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 22eca3b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 7e548bf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 64ba594..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm deleted file mode 100644 index 3705318..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm deleted file mode 100644 index 6282681..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm deleted file mode 100644 index 1d03eed..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 70d3176..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm deleted file mode 100644 index 1776af3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm deleted file mode 100644 index 444b382..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm deleted file mode 100644 index 0cfbcd7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm deleted file mode 100644 index 60c4f53..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm deleted file mode 100644 index 0d662a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index f2b87d7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 5ff3219..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm deleted file mode 100644 index 31eba22..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule deleted file mode 100644 index 0d212ac..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 491412 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule deleted file mode 100644 index ec8012b..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule +++ /dev/null @@ -1,68 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405610000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 179160 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule deleted file mode 100644 index d8914c0..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule +++ /dev/null @@ -1,36 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 77504 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule deleted file mode 100644 index 95ebaec..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule +++ /dev/null @@ -1,64 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405605000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 210900 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule deleted file mode 100644 index 34a0aba..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule +++ /dev/null @@ -1,100 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405644000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 3785860 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1772776850000000000 - path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' - size: 162 - sdk_relative: true - - mtime: 1772253432000000000 - path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' - size: 81098 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true - - mtime: 1776564811000000000 - path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1155103 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule deleted file mode 100644 index c0fdeb6..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405613000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30136 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule deleted file mode 100644 index a2a4108..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule +++ /dev/null @@ -1,52 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405587000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 50836 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule deleted file mode 100644 index 748ae1f..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule +++ /dev/null @@ -1,44 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405589000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30876 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule deleted file mode 100644 index 1432dc9..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule +++ /dev/null @@ -1,12 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405569000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 15012500 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule deleted file mode 100644 index de1fb4a..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 18524 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559148000000000 - path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1411 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule deleted file mode 100644 index 3596a85..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 401660 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule deleted file mode 100644 index 83acb25..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405609000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 117716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule deleted file mode 100644 index fbe57da..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule deleted file mode 100644 index a57816b..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 748656 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule deleted file mode 100644 index 197735f..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405578000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 92188 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule deleted file mode 100644 index 698d567..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule +++ /dev/null @@ -1,24 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405579000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23256 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule deleted file mode 100644 index 824fb22..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule +++ /dev/null @@ -1,28 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405580000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 20564 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule deleted file mode 100644 index 8634693..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405576000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 84172 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp deleted file mode 100644 index e69de29..0000000 diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc deleted file mode 100644 index dd8a684..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule deleted file mode 100644 index 40239ba..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo deleted file mode 100644 index 87b0926..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.abi.json b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc deleted file mode 100644 index 8bd7d53..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule deleted file mode 100644 index 7bad56c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo deleted file mode 100644 index 08ea4c1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d deleted file mode 100644 index c6f2c91..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o deleted file mode 100644 index b560ec5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps deleted file mode 100644 index 2052134..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d deleted file mode 100644 index 10002d3..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h deleted file mode 100644 index fefd13b..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYDOMAIN_SWIFT_H -#define VELODYDOMAIN_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap deleted file mode 100644 index e1ec2c3..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyDomain { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h" -} diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json deleted file mode 100644 index 3304bcc..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia" - } -} diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors deleted file mode 100644 index 311e49d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources deleted file mode 100644 index 7727965..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d deleted file mode 100644 index d221be4..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o deleted file mode 100644 index 9d10dda..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps deleted file mode 100644 index 2fb982c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.d b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.d deleted file mode 100644 index 05c961b..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.dia b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h deleted file mode 100644 index 24bcdd5..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYNETWORKING_SWIFT_H -#define VELODYNETWORKING_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyNetworking",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyNetworking",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/module.modulemap b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/module.modulemap deleted file mode 100644 index c53f3e5..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyNetworking { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h" -} diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json deleted file mode 100644 index a4fdc7d..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia" - } -} diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.priors b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.priors deleted file mode 100644 index c008992..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources deleted file mode 100644 index 8fefcd2..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/description.json b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/description.json deleted file mode 100644 index 0e67ef9..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/description.json +++ /dev/null @@ -1,395 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - }, - "C.VelodyNetworking-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyNetworking", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyNetworking" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyNetworking", - "-package-name", - "velodynetworking", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ], - "VelodyNetworking" : [ - "VelodyDomain" - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 deleted file mode 100644 index d8de0d0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 deleted file mode 100644 index a3a9228..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 deleted file mode 100644 index 332cecc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 deleted file mode 100644 index 8ab5d97..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 deleted file mode 100644 index 3f7f1f4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 deleted file mode 100644 index 4ba51ab..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A deleted file mode 100644 index 9dc6451..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B deleted file mode 100644 index de0d748..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C deleted file mode 100644 index 2d7bd3c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C deleted file mode 100644 index 1c187c1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D deleted file mode 100644 index f552bbf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F deleted file mode 100644 index 9784784..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G deleted file mode 100644 index 8c39ec2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I deleted file mode 100644 index 4131c00..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I deleted file mode 100644 index ba2a57d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K deleted file mode 100644 index 472d29d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L deleted file mode 100644 index 3865ab3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L deleted file mode 100644 index 7d87af8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M deleted file mode 100644 index c659b9c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P deleted file mode 100644 index 776035c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q deleted file mode 100644 index 2ccb007..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R deleted file mode 100644 index 0988fed..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S deleted file mode 100644 index 70eaab4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V deleted file mode 100644 index f142839..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W deleted file mode 100644 index 3fc3c57..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X deleted file mode 100644 index d92858e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X deleted file mode 100644 index 65fbaee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z deleted file mode 100644 index b015911..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 deleted file mode 100644 index fc81374..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 deleted file mode 100644 index 48d8ee3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 deleted file mode 100644 index 5674743..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 deleted file mode 100644 index 6e84472..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 deleted file mode 100644 index e3acd29..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 deleted file mode 100644 index f793c0c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 deleted file mode 100644 index 87575cf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 deleted file mode 100644 index 7a74614..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 deleted file mode 100644 index 2fb6304..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 deleted file mode 100644 index 66750c4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 deleted file mode 100644 index e76046c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 deleted file mode 100644 index f605b23..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 deleted file mode 100644 index beb3eaa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 deleted file mode 100644 index c8fb1a1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 deleted file mode 100644 index 92d491d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 deleted file mode 100644 index 9cedb84..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 deleted file mode 100644 index 9ef1b4f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 deleted file mode 100644 index 2fa39fd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B deleted file mode 100644 index d63482d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B deleted file mode 100644 index f913215..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C deleted file mode 100644 index 69ceaf3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F deleted file mode 100644 index c0704f0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I deleted file mode 100644 index ecde0c5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I deleted file mode 100644 index 807c71f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I deleted file mode 100644 index 74b5449..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I deleted file mode 100644 index b241d51..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I deleted file mode 100644 index ae9b5e5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J deleted file mode 100644 index 315f757..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K deleted file mode 100644 index 25f5b8d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N deleted file mode 100644 index 2832534..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N deleted file mode 100644 index db107cb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q deleted file mode 100644 index e2b8122..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R deleted file mode 100644 index 4315342..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W deleted file mode 100644 index bf7e3e8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X deleted file mode 100644 index 9f59f70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z deleted file mode 100644 index ddbd47b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 deleted file mode 100644 index 9a6aac6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 deleted file mode 100644 index e3587a6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 deleted file mode 100644 index 15a8f88..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 deleted file mode 100644 index cad8dca..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 deleted file mode 100644 index 4fef39b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 deleted file mode 100644 index b05a151..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A deleted file mode 100644 index e8f7f6f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C deleted file mode 100644 index 09d6f89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D deleted file mode 100644 index 41de67b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E deleted file mode 100644 index 8f5c69b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E deleted file mode 100644 index 9f42e38..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F deleted file mode 100644 index cb48ea9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H deleted file mode 100644 index 1b90c98..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I deleted file mode 100644 index a9d8c35..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K deleted file mode 100644 index 154c8c4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O deleted file mode 100644 index 5c4dcf1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q deleted file mode 100644 index 754ef57..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R deleted file mode 100644 index e9d8da2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S deleted file mode 100644 index 4f8a13d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S deleted file mode 100644 index 727e0ff..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U deleted file mode 100644 index 44436b4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U deleted file mode 100644 index ef7fa0f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U deleted file mode 100644 index ca6edfc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U deleted file mode 100644 index 1a9b16f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V deleted file mode 100644 index 52d7cd9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z deleted file mode 100644 index c9b3910..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z deleted file mode 100644 index 5a10275..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 deleted file mode 100644 index fc00457..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 deleted file mode 100644 index 3db7277..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 deleted file mode 100644 index f93985c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 deleted file mode 100644 index e86e3e7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 deleted file mode 100644 index 3e9bd95..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 deleted file mode 100644 index 27edb3c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 deleted file mode 100644 index ba671da..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 deleted file mode 100644 index 59ddecf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 deleted file mode 100644 index f7dc6fb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C deleted file mode 100644 index ec48d2a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D deleted file mode 100644 index 2e22bd9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E deleted file mode 100644 index 7fe6d84..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F deleted file mode 100644 index 6cc497e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F deleted file mode 100644 index fb2179f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H deleted file mode 100644 index ffe050b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J deleted file mode 100644 index 727eae4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J deleted file mode 100644 index bd5ba39..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K deleted file mode 100644 index 19d4de3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K deleted file mode 100644 index d888ae2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K deleted file mode 100644 index f002fd2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L deleted file mode 100644 index aec02a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L deleted file mode 100644 index 9db0c86..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M deleted file mode 100644 index 5b387b6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O deleted file mode 100644 index bb15053..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q deleted file mode 100644 index 14232cb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q deleted file mode 100644 index c35d2db..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T deleted file mode 100644 index cdfa612..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U deleted file mode 100644 index 572e574..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U deleted file mode 100644 index 9cc36aa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V deleted file mode 100644 index dc32420..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V deleted file mode 100644 index e02c5c9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W deleted file mode 100644 index 7a56612..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X deleted file mode 100644 index 50435d1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X deleted file mode 100644 index 2ad8efe..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y deleted file mode 100644 index 3175c2b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z deleted file mode 100644 index c32a976..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 deleted file mode 100644 index 8746a3f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 deleted file mode 100644 index e302fee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 deleted file mode 100644 index a019c73..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 deleted file mode 100644 index ee3a337..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 deleted file mode 100644 index c970b9f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 deleted file mode 100644 index 621ff54..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 deleted file mode 100644 index bf13889..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C deleted file mode 100644 index 69bc594..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C deleted file mode 100644 index 37376cf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D deleted file mode 100644 index 959ae33..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E deleted file mode 100644 index 3c7cf0a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F deleted file mode 100644 index cfcce56..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I deleted file mode 100644 index e9afed6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K deleted file mode 100644 index 61024bb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O deleted file mode 100644 index e905484..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P deleted file mode 100644 index 84212f2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q deleted file mode 100644 index 47386d7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q deleted file mode 100644 index 711b99d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S deleted file mode 100644 index 82229a8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S deleted file mode 100644 index 13ce346..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V deleted file mode 100644 index 1b0f1c3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V deleted file mode 100644 index 92afd17..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W deleted file mode 100644 index bdf9135..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X deleted file mode 100644 index e79f069..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X deleted file mode 100644 index 889c4a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 deleted file mode 100644 index f587a0c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 deleted file mode 100644 index 9846567..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 deleted file mode 100644 index 62f1933..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 deleted file mode 100644 index f783edd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 deleted file mode 100644 index aacb5cb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 deleted file mode 100644 index 536822a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A deleted file mode 100644 index 1f3281a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B deleted file mode 100644 index e64ebec..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B deleted file mode 100644 index 9553b1d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C deleted file mode 100644 index 92f14d1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C deleted file mode 100644 index a27dd7f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D deleted file mode 100644 index d20239b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G deleted file mode 100644 index 44a63bd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H deleted file mode 100644 index 5106054..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J deleted file mode 100644 index 4ae78ee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K deleted file mode 100644 index 8626382..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N deleted file mode 100644 index d77c105..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O deleted file mode 100644 index 70c93b0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O deleted file mode 100644 index a4a2f86..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P deleted file mode 100644 index 712e3f1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q deleted file mode 100644 index 35310d5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R deleted file mode 100644 index a24a655..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R deleted file mode 100644 index 029a717..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S deleted file mode 100644 index 4992e48..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T deleted file mode 100644 index 82f2da3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U deleted file mode 100644 index d405781..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W deleted file mode 100644 index 8cb65e8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y deleted file mode 100644 index c0fc055..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y deleted file mode 100644 index 89a2019..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 deleted file mode 100644 index 9b669ff..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 deleted file mode 100644 index affc184..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 deleted file mode 100644 index baeeb13..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 deleted file mode 100644 index e4ddb61..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 deleted file mode 100644 index 7712a33..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 deleted file mode 100644 index fded31d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 deleted file mode 100644 index 66a4bd5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 deleted file mode 100644 index c98dd27..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A deleted file mode 100644 index 501f418..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C deleted file mode 100644 index e61e005..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E deleted file mode 100644 index 9c05cfb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E deleted file mode 100644 index 783e2eb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F deleted file mode 100644 index d91a944..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G deleted file mode 100644 index 13df552..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J deleted file mode 100644 index 1a7bef4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K deleted file mode 100644 index b98969c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M deleted file mode 100644 index 785c16d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N deleted file mode 100644 index 9b7055a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O deleted file mode 100644 index 27789e8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q deleted file mode 100644 index a049a95..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q deleted file mode 100644 index 18346d9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R deleted file mode 100644 index 862efef..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V deleted file mode 100644 index 28ee5d0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W deleted file mode 100644 index 8f4ad95..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X deleted file mode 100644 index 9158251..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X deleted file mode 100644 index 0e845c5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X deleted file mode 100644 index 9265838..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z deleted file mode 100644 index a24ceaf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 deleted file mode 100644 index 0a9bd9a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 deleted file mode 100644 index 31d87a2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 deleted file mode 100644 index 50c4999..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 deleted file mode 100644 index 6832da8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 deleted file mode 100644 index c45b3ef..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 deleted file mode 100644 index e2b8e02..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 deleted file mode 100644 index 6a8ee99..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 deleted file mode 100644 index 7c81948..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 deleted file mode 100644 index 05db54f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A deleted file mode 100644 index 7db2a09..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B deleted file mode 100644 index 3f40130..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E deleted file mode 100644 index b0e5156..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E deleted file mode 100644 index 5e048c9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I deleted file mode 100644 index 449759a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J deleted file mode 100644 index 0d9a398..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M deleted file mode 100644 index 4f8cb00..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N deleted file mode 100644 index 876f7b0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N deleted file mode 100644 index 329d02e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N deleted file mode 100644 index 8ee734e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N deleted file mode 100644 index bbc3cd5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O deleted file mode 100644 index 52dbb67..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P deleted file mode 100644 index 573c4b3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P deleted file mode 100644 index 80b8762..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P deleted file mode 100644 index 365fcd7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q deleted file mode 100644 index 3bb906e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q deleted file mode 100644 index 4ba95d3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T deleted file mode 100644 index 9979885..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X deleted file mode 100644 index 1cacce4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 deleted file mode 100644 index 87c0d82..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 deleted file mode 100644 index c8d1f6e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 deleted file mode 100644 index 86079b7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 deleted file mode 100644 index 13e7a8d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 deleted file mode 100644 index b6ce923..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 deleted file mode 100644 index eb679f2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 deleted file mode 100644 index 210f96b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 deleted file mode 100644 index 92877c9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 deleted file mode 100644 index d572318..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 deleted file mode 100644 index 8bad9b8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 deleted file mode 100644 index 5916c8b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 deleted file mode 100644 index 5d85a0e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 deleted file mode 100644 index 416befd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A deleted file mode 100644 index c94ad0f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C deleted file mode 100644 index d107423..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C deleted file mode 100644 index 401c3f6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E deleted file mode 100644 index 895d6e5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E deleted file mode 100644 index c5e43eb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E deleted file mode 100644 index b038767..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F deleted file mode 100644 index 35b4812..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H deleted file mode 100644 index 8484583..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I deleted file mode 100644 index c7be029..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N deleted file mode 100644 index f7f26c3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q deleted file mode 100644 index ebc4f3b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R deleted file mode 100644 index 5fcfa30..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R deleted file mode 100644 index 44803c8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S deleted file mode 100644 index 07dcd49..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S deleted file mode 100644 index 2bf1169..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S deleted file mode 100644 index c6876b2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S deleted file mode 100644 index e4b1b5e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V deleted file mode 100644 index 0c328f0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W deleted file mode 100644 index 54ebf16..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y deleted file mode 100644 index f2bc86d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 deleted file mode 100644 index 262ba18..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 deleted file mode 100644 index fad8d28..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 deleted file mode 100644 index 4ece05c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 deleted file mode 100644 index 6749e37..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 deleted file mode 100644 index 5861624..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 deleted file mode 100644 index 70fa602..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 deleted file mode 100644 index b4dbd3f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 deleted file mode 100644 index 9fe3fa1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 deleted file mode 100644 index 380db15..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 deleted file mode 100644 index f9b4d06..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A deleted file mode 100644 index 5047eb6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A deleted file mode 100644 index 22b3249..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E deleted file mode 100644 index 1eed699..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E deleted file mode 100644 index f3f1059..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E deleted file mode 100644 index 8cf3264..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E deleted file mode 100644 index 86ea927..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E deleted file mode 100644 index ad13c05..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G deleted file mode 100644 index 576be06..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H deleted file mode 100644 index c209f8f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H deleted file mode 100644 index f8e5d53..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I deleted file mode 100644 index 26ad779..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I deleted file mode 100644 index 0a6ee79..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J deleted file mode 100644 index 428d376..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K deleted file mode 100644 index dbc2c54..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L deleted file mode 100644 index 3e070be..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N deleted file mode 100644 index d66e284..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N deleted file mode 100644 index 54b874c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O deleted file mode 100644 index c838be9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R deleted file mode 100644 index f361f1b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R deleted file mode 100644 index 389e65a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S deleted file mode 100644 index 2658a1a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y deleted file mode 100644 index 82ea224..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z deleted file mode 100644 index 60bc4a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z deleted file mode 100644 index 6091df7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z deleted file mode 100644 index 277e767..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 deleted file mode 100644 index 9bfdcee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 deleted file mode 100644 index 7d9bcb4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 deleted file mode 100644 index cb0241c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 deleted file mode 100644 index e25aea0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 deleted file mode 100644 index ddf97ef..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 deleted file mode 100644 index 746b114..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 deleted file mode 100644 index e9ee484..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 deleted file mode 100644 index a0dc8aa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB deleted file mode 100644 index f6b2eb6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD deleted file mode 100644 index 06e7645..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF deleted file mode 100644 index 5a519ac..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG deleted file mode 100644 index a823a70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG deleted file mode 100644 index 14543cf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG deleted file mode 100644 index 717c3b1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ deleted file mode 100644 index 2e2e836..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ deleted file mode 100644 index c76c0a2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL deleted file mode 100644 index 343d386..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM deleted file mode 100644 index 78f5d23..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM deleted file mode 100644 index dc78a0a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM deleted file mode 100644 index 84bc5cd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO deleted file mode 100644 index a4228c1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP deleted file mode 100644 index 2c2a455..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ deleted file mode 100644 index 5393ad2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ deleted file mode 100644 index ab82173..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ deleted file mode 100644 index 4d2ac38..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT deleted file mode 100644 index 838c4be..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT deleted file mode 100644 index 01a0389..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT deleted file mode 100644 index d250f5b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT deleted file mode 100644 index 079634e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU deleted file mode 100644 index 3072fcc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU deleted file mode 100644 index f6e6108..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW deleted file mode 100644 index 3562423..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW deleted file mode 100644 index d66edef..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX deleted file mode 100644 index 50dd6d3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX deleted file mode 100644 index ee7d1cc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY deleted file mode 100644 index fa91362..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ deleted file mode 100644 index ae2fbfe..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ deleted file mode 100644 index 529c005..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 deleted file mode 100644 index b0fed79..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 deleted file mode 100644 index c08b2f5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 deleted file mode 100644 index 17d43a1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 deleted file mode 100644 index 9803275..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 deleted file mode 100644 index 7f5924b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 deleted file mode 100644 index 18b1c54..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA deleted file mode 100644 index 276b65c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA deleted file mode 100644 index de2efa3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB deleted file mode 100644 index 07f3f83..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB deleted file mode 100644 index 09633c1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC deleted file mode 100644 index c96ce93..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD deleted file mode 100644 index 316809e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD deleted file mode 100644 index 5a9d7e1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD deleted file mode 100644 index 02de3fa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE deleted file mode 100644 index 8fb64f8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG deleted file mode 100644 index 754bbdc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH deleted file mode 100644 index 1aa2aa5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH deleted file mode 100644 index 46c4a43..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ deleted file mode 100644 index bb27f4b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ deleted file mode 100644 index f9bab7e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK deleted file mode 100644 index c0db6bf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL deleted file mode 100644 index 9ef7f7c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL deleted file mode 100644 index 9b946c5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP deleted file mode 100644 index 50f0a18..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ deleted file mode 100644 index 8151f91..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ deleted file mode 100644 index 074a126..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR deleted file mode 100644 index 462e4ba..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS deleted file mode 100644 index 1f05727..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT deleted file mode 100644 index 4c7c78b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT deleted file mode 100644 index 894d506..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV deleted file mode 100644 index d23b640..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX deleted file mode 100644 index 9adbb60..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY deleted file mode 100644 index 467ff86..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY deleted file mode 100644 index e889031..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY deleted file mode 100644 index e9baa43..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 deleted file mode 100644 index f0ae61d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 deleted file mode 100644 index 7c9d232..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 deleted file mode 100644 index ffa1f52..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 deleted file mode 100644 index e8551d6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 deleted file mode 100644 index 5e21b19..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 deleted file mode 100644 index 4f21474..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 deleted file mode 100644 index 06eee31..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 deleted file mode 100644 index 9f6eef0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 deleted file mode 100644 index 2c2afe3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB deleted file mode 100644 index f4aa8bb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB deleted file mode 100644 index fabdbfd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC deleted file mode 100644 index ba56bee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD deleted file mode 100644 index 5a67bda..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF deleted file mode 100644 index 7991a14..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI deleted file mode 100644 index f3df3a0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI deleted file mode 100644 index 2a0f007..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK deleted file mode 100644 index 08bfafe..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL deleted file mode 100644 index 6015d1a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN deleted file mode 100644 index 0ed72f0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN deleted file mode 100644 index 7d378d8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP deleted file mode 100644 index 96aafdd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP deleted file mode 100644 index 11ca7b2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ deleted file mode 100644 index ef1aaa4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR deleted file mode 100644 index c5bbb59..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR deleted file mode 100644 index fda3d92..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR deleted file mode 100644 index e202544..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT deleted file mode 100644 index 374489a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT deleted file mode 100644 index a0ce498..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT deleted file mode 100644 index 47a0e5a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV deleted file mode 100644 index 500a147..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW deleted file mode 100644 index 1dc59a0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW deleted file mode 100644 index 1538f7b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX deleted file mode 100644 index ce3fbfb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX deleted file mode 100644 index 966c6b0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY deleted file mode 100644 index cf36aae..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ deleted file mode 100644 index abf6f84..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 deleted file mode 100644 index ae76537..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 deleted file mode 100644 index 1067b53..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 deleted file mode 100644 index c3239c1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 deleted file mode 100644 index 17871d5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 deleted file mode 100644 index 984656c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 deleted file mode 100644 index 06b0431..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB deleted file mode 100644 index a3fae8d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC deleted file mode 100644 index daa2ba6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD deleted file mode 100644 index 559341b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE deleted file mode 100644 index ce97f80..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF deleted file mode 100644 index 7955fa0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF deleted file mode 100644 index ec2aa3f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG deleted file mode 100644 index f2428d9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG deleted file mode 100644 index 026c3fb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG deleted file mode 100644 index 8793a3b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG deleted file mode 100644 index bd2c21b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH deleted file mode 100644 index 1311245..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI deleted file mode 100644 index ea5e317..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ deleted file mode 100644 index 7043717..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ deleted file mode 100644 index 3c16be4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL deleted file mode 100644 index 7e5a047..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL deleted file mode 100644 index 210cec5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM deleted file mode 100644 index 48c83c9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN deleted file mode 100644 index 205dcc8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO deleted file mode 100644 index 62c96cb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO deleted file mode 100644 index e623db9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR deleted file mode 100644 index 20f82b8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS deleted file mode 100644 index 73b6eb3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU deleted file mode 100644 index 282cef0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX deleted file mode 100644 index b5c5ae5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX deleted file mode 100644 index de5325a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY deleted file mode 100644 index e60f47a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY deleted file mode 100644 index 3274f0b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 deleted file mode 100644 index c50b37c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 deleted file mode 100644 index e8541dd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 deleted file mode 100644 index 7950a47..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 deleted file mode 100644 index 384a5ea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 deleted file mode 100644 index 492a399..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 deleted file mode 100644 index 367a260..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 deleted file mode 100644 index f3765fc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 deleted file mode 100644 index 86faf28..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 deleted file mode 100644 index 5ce3e2c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA deleted file mode 100644 index da4615d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED deleted file mode 100644 index 175ce69..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF deleted file mode 100644 index f8a6eae..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF deleted file mode 100644 index 335af7b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH deleted file mode 100644 index 1ea602c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI deleted file mode 100644 index 887241f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK deleted file mode 100644 index de31f3f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL deleted file mode 100644 index 30fec6b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM deleted file mode 100644 index 93257b4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM deleted file mode 100644 index 854a2e4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN deleted file mode 100644 index ada09ad..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP deleted file mode 100644 index 25bf52d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP deleted file mode 100644 index d940b08..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ deleted file mode 100644 index 7a101c9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER deleted file mode 100644 index 7c04534..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER deleted file mode 100644 index ba23380..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER deleted file mode 100644 index 352bfd1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET deleted file mode 100644 index eea6ca3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU deleted file mode 100644 index 4f7dfc9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV deleted file mode 100644 index 22d127b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW deleted file mode 100644 index 6cf7918..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 deleted file mode 100644 index b8b046b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 deleted file mode 100644 index d1b83c0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 deleted file mode 100644 index 992a7de..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 deleted file mode 100644 index 200679a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 deleted file mode 100644 index 1214f89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 deleted file mode 100644 index 74e8b16..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 deleted file mode 100644 index 8e6eccb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 deleted file mode 100644 index 76e8da3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 deleted file mode 100644 index 91690d9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 deleted file mode 100644 index 99b3bea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 deleted file mode 100644 index e466016..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 deleted file mode 100644 index bbc9666..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 deleted file mode 100644 index d7a9428..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 deleted file mode 100644 index 5c4fb89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA deleted file mode 100644 index 4b53d2d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA deleted file mode 100644 index 738e4d2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD deleted file mode 100644 index 4c1f051..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE deleted file mode 100644 index d649bdc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE deleted file mode 100644 index 2ca274e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI deleted file mode 100644 index 7a07368..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK deleted file mode 100644 index 463cf3b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK deleted file mode 100644 index 3a73af2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK deleted file mode 100644 index 7101aaa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM deleted file mode 100644 index 5eebe0c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN deleted file mode 100644 index c4b21a9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ deleted file mode 100644 index ce8050f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS deleted file mode 100644 index ce4f65a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS deleted file mode 100644 index a096cee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS deleted file mode 100644 index f7f04f1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV deleted file mode 100644 index a64a372..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW deleted file mode 100644 index fe8ab82..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW deleted file mode 100644 index 43bf864..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX deleted file mode 100644 index 2b06ede..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX deleted file mode 100644 index 22887eb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY deleted file mode 100644 index dff0a8e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ deleted file mode 100644 index c9eeaf2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ deleted file mode 100644 index 6c79289..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 deleted file mode 100644 index da6cae3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 deleted file mode 100644 index c6a9e0b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 deleted file mode 100644 index 6384e93..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 deleted file mode 100644 index 32adb89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 deleted file mode 100644 index ecd3234..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 deleted file mode 100644 index 55d79b3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 deleted file mode 100644 index a8d1b82..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 deleted file mode 100644 index c4ae13f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 deleted file mode 100644 index 31da2aa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 deleted file mode 100644 index 167736c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 deleted file mode 100644 index 33aaa89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB deleted file mode 100644 index a63ea11..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB deleted file mode 100644 index c3cea85..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC deleted file mode 100644 index 4f0a799..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC deleted file mode 100644 index d15fd65..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE deleted file mode 100644 index 307ca10..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE deleted file mode 100644 index b738694..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF deleted file mode 100644 index 560a27d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF deleted file mode 100644 index 3a10808..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF deleted file mode 100644 index f6b55dc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG deleted file mode 100644 index 321031a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH deleted file mode 100644 index d4ee4c5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI deleted file mode 100644 index 9522de4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI deleted file mode 100644 index 45a79ea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI deleted file mode 100644 index 1efd21a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL deleted file mode 100644 index 36238e1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN deleted file mode 100644 index a126530..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO deleted file mode 100644 index 1a3e01d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO deleted file mode 100644 index 4bff99e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO deleted file mode 100644 index c6eb519..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO deleted file mode 100644 index b0dbe28..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ deleted file mode 100644 index f3c6c4c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS deleted file mode 100644 index d6c5312..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT deleted file mode 100644 index 6a7ab98..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT deleted file mode 100644 index 455036b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY deleted file mode 100644 index 488da5c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 deleted file mode 100644 index ef15942..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 deleted file mode 100644 index ff6802a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 deleted file mode 100644 index c8b433f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 deleted file mode 100644 index 5c2c782..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 deleted file mode 100644 index 62cbd3f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 deleted file mode 100644 index 0da1314..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 deleted file mode 100644 index 7567236..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 deleted file mode 100644 index de2c99c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 deleted file mode 100644 index dc4a98d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 deleted file mode 100644 index 77893ea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 deleted file mode 100644 index 979dbbc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 deleted file mode 100644 index 66a6b05..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 deleted file mode 100644 index 1f2bc14..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 deleted file mode 100644 index 262743a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 deleted file mode 100644 index 1c0ab5e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA deleted file mode 100644 index e572bd4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC deleted file mode 100644 index fb0933b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG deleted file mode 100644 index a81ece2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH deleted file mode 100644 index f28aaef..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH deleted file mode 100644 index b9bd040..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH deleted file mode 100644 index 75dd34f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ deleted file mode 100644 index 2eaee68..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM deleted file mode 100644 index b4802a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM deleted file mode 100644 index 71354ea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM deleted file mode 100644 index 64250fc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO deleted file mode 100644 index 123d730..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO deleted file mode 100644 index 776fb4d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP deleted file mode 100644 index c878f89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP deleted file mode 100644 index 4e38d3d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU deleted file mode 100644 index 40cb754..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV deleted file mode 100644 index 2e8c89e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW deleted file mode 100644 index 5838215..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY deleted file mode 100644 index c02aa7e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ deleted file mode 100644 index bf62572..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ deleted file mode 100644 index c9887cc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 deleted file mode 100644 index 901c801..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 deleted file mode 100644 index 6004312..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 deleted file mode 100644 index 277c389..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 deleted file mode 100644 index 9f76f90..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 deleted file mode 100644 index 5b4dd70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 deleted file mode 100644 index fb78609..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 deleted file mode 100644 index d948f59..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 deleted file mode 100644 index bb5ba96..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 deleted file mode 100644 index 0d1945e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 deleted file mode 100644 index 9948923..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB deleted file mode 100644 index 6a3d0d4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID deleted file mode 100644 index f4ec351..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH deleted file mode 100644 index c10908e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II deleted file mode 100644 index a8035ee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ deleted file mode 100644 index 8b9f1a3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK deleted file mode 100644 index 61dc887..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK deleted file mode 100644 index 41e59a8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL deleted file mode 100644 index 318e8eb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL deleted file mode 100644 index d212048..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM deleted file mode 100644 index 3225789..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP deleted file mode 100644 index 12e45be..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP deleted file mode 100644 index f90ae8e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP deleted file mode 100644 index f014ff2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR deleted file mode 100644 index 483cee5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR deleted file mode 100644 index 3a8a528..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR deleted file mode 100644 index 22331cc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS deleted file mode 100644 index 24e5639..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT deleted file mode 100644 index fcda57f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW deleted file mode 100644 index 975f9b5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW deleted file mode 100644 index bbdce81..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW deleted file mode 100644 index 9d5996b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW deleted file mode 100644 index 5dc4af3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX deleted file mode 100644 index 114edba..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 deleted file mode 100644 index 9c39ad4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 deleted file mode 100644 index 954ccab..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 deleted file mode 100644 index 23791ed..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 deleted file mode 100644 index bb18797..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 deleted file mode 100644 index 46a1cc1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 deleted file mode 100644 index 418d7f9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 deleted file mode 100644 index 9017b56..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 deleted file mode 100644 index 6bb01fe..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 deleted file mode 100644 index ab0130a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 deleted file mode 100644 index f3fca6d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 deleted file mode 100644 index eb99a1e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 deleted file mode 100644 index 9e96d89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA deleted file mode 100644 index d54fc90..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD deleted file mode 100644 index e416433..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE deleted file mode 100644 index 66d0e68..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE deleted file mode 100644 index 3373be9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE deleted file mode 100644 index dfd5c5a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF deleted file mode 100644 index a6707a2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG deleted file mode 100644 index c7a589d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI deleted file mode 100644 index 3c2a974..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI deleted file mode 100644 index 288e974..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI deleted file mode 100644 index 912d5a0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ deleted file mode 100644 index 3ec34bf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL deleted file mode 100644 index 173f16f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM deleted file mode 100644 index b0fbcf6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM deleted file mode 100644 index 025965f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP deleted file mode 100644 index b0e192f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP deleted file mode 100644 index 0d50bb9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP deleted file mode 100644 index e13babe..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP deleted file mode 100644 index c6a19a8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP deleted file mode 100644 index 8a82aa6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ deleted file mode 100644 index 1502529..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR deleted file mode 100644 index 6626800..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS deleted file mode 100644 index 14e5496..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS deleted file mode 100644 index fa46766..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU deleted file mode 100644 index 6cef17b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW deleted file mode 100644 index e41ae54..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX deleted file mode 100644 index e17ca97..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY deleted file mode 100644 index f8eef19..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 deleted file mode 100644 index e861ed8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 deleted file mode 100644 index 3d70282..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 deleted file mode 100644 index 31cc150..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 deleted file mode 100644 index d9bdb0d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 deleted file mode 100644 index c57d809..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 deleted file mode 100644 index 4c5b971..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 deleted file mode 100644 index 492805c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 deleted file mode 100644 index ad244e2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 deleted file mode 100644 index 84e81a8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA deleted file mode 100644 index acb3f2a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA deleted file mode 100644 index 8f02097..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB deleted file mode 100644 index 643c677..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB deleted file mode 100644 index c2d4287..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB deleted file mode 100644 index c8b02f5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB deleted file mode 100644 index ab4c5af..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB deleted file mode 100644 index 40bcd70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE deleted file mode 100644 index 1f50de1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE deleted file mode 100644 index 19c8766..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE deleted file mode 100644 index 864e8a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG deleted file mode 100644 index d373562..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG deleted file mode 100644 index 8bd0205..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI deleted file mode 100644 index ecd36e5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ deleted file mode 100644 index 98f98f5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ deleted file mode 100644 index 2b529df..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ deleted file mode 100644 index 7e09404..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ deleted file mode 100644 index b83d887..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL deleted file mode 100644 index 158fa28..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM deleted file mode 100644 index c11b623..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN deleted file mode 100644 index 74b1601..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN deleted file mode 100644 index 406ea94..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN deleted file mode 100644 index 28113ef..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP deleted file mode 100644 index 6bbe539..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR deleted file mode 100644 index 11bf305..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR deleted file mode 100644 index 9aee30a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS deleted file mode 100644 index a7b344a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS deleted file mode 100644 index 0c28d16..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT deleted file mode 100644 index 51b7aae..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU deleted file mode 100644 index a04bf4f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV deleted file mode 100644 index 6591ce0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 deleted file mode 100644 index bbd774e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 deleted file mode 100644 index 6339774..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 deleted file mode 100644 index 176b67f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 deleted file mode 100644 index bb61bb1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 deleted file mode 100644 index 3274f6f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 deleted file mode 100644 index 970ac07..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 deleted file mode 100644 index 9332050..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 deleted file mode 100644 index 647d290..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 deleted file mode 100644 index c750605..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 deleted file mode 100644 index ca40424..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA deleted file mode 100644 index 8b3c16b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA deleted file mode 100644 index 15fa85d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC deleted file mode 100644 index b0ce020..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE deleted file mode 100644 index cdfecc3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE deleted file mode 100644 index b3680a3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG deleted file mode 100644 index 94d0c7a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH deleted file mode 100644 index 6c153ec..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH deleted file mode 100644 index e1c63db..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI deleted file mode 100644 index ab0b805..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ deleted file mode 100644 index d4c35ea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN deleted file mode 100644 index b22ea13..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO deleted file mode 100644 index f2ba87c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO deleted file mode 100644 index 96bf919..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP deleted file mode 100644 index 34f9f70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ deleted file mode 100644 index 2fbac45..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW deleted file mode 100644 index d4059b6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX deleted file mode 100644 index f1c913d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY deleted file mode 100644 index f10b5be..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 deleted file mode 100644 index f975567..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 deleted file mode 100644 index 7b948a2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 deleted file mode 100644 index 946160e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 deleted file mode 100644 index ff02904..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 deleted file mode 100644 index 69767c0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 deleted file mode 100644 index d4f0220..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 deleted file mode 100644 index 43ddfb2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 deleted file mode 100644 index efdd5fc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 deleted file mode 100644 index 449a3cd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 deleted file mode 100644 index 2aa41bf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 deleted file mode 100644 index 5868009..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 deleted file mode 100644 index 785257d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 deleted file mode 100644 index 14c62fd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA deleted file mode 100644 index 6f82d01..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB deleted file mode 100644 index 25903cd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC deleted file mode 100644 index df37c8f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF deleted file mode 100644 index f9e7967..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG deleted file mode 100644 index e3dc037..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH deleted file mode 100644 index c0e4de4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH deleted file mode 100644 index 59ea876..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH deleted file mode 100644 index 11585f9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ deleted file mode 100644 index 1d2d2ee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ deleted file mode 100644 index faef055..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN deleted file mode 100644 index be64bc4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN deleted file mode 100644 index fe4d932..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO deleted file mode 100644 index 3853c6d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP deleted file mode 100644 index e072794..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ deleted file mode 100644 index f642c21..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ deleted file mode 100644 index 9d4e48c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS deleted file mode 100644 index 0615a59..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS deleted file mode 100644 index e115798..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS deleted file mode 100644 index 54e9907..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT deleted file mode 100644 index 532347c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU deleted file mode 100644 index 8b2faa0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX deleted file mode 100644 index 065e1c3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ deleted file mode 100644 index 19f655e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ deleted file mode 100644 index 54da647..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 deleted file mode 100644 index f250f70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 deleted file mode 100644 index 77ae94d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 deleted file mode 100644 index 8611299..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 deleted file mode 100644 index 1a4f4a7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 deleted file mode 100644 index f97f215..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 deleted file mode 100644 index 27adc6b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA deleted file mode 100644 index 58dcc1f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB deleted file mode 100644 index 31912fa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND deleted file mode 100644 index fe53ac0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND deleted file mode 100644 index 283bf71..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE deleted file mode 100644 index 2801b0f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF deleted file mode 100644 index b08dbdd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF deleted file mode 100644 index 9dccab4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF deleted file mode 100644 index 320deee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG deleted file mode 100644 index 5255215..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH deleted file mode 100644 index 3a0d542..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH deleted file mode 100644 index e727fa3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI deleted file mode 100644 index 2307d22..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ deleted file mode 100644 index 110ddf5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ deleted file mode 100644 index 687ccd8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ deleted file mode 100644 index 8c729c2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ deleted file mode 100644 index 183bf05..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK deleted file mode 100644 index 3d72fdd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK deleted file mode 100644 index 79330de..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL deleted file mode 100644 index 509c707..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM deleted file mode 100644 index a84d8d7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO deleted file mode 100644 index cf2324a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP deleted file mode 100644 index 887048b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR deleted file mode 100644 index d61e8fc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR deleted file mode 100644 index 92947dd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR deleted file mode 100644 index a317957..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW deleted file mode 100644 index f8ac640..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX deleted file mode 100644 index 745df8d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY deleted file mode 100644 index 9d9b667..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY deleted file mode 100644 index c2a9a37..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ deleted file mode 100644 index 814a3c5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 deleted file mode 100644 index a851033..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 deleted file mode 100644 index bbe353f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 deleted file mode 100644 index 16a7374..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 deleted file mode 100644 index 2ca1025..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 deleted file mode 100644 index 0261331..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 deleted file mode 100644 index 1238138..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 deleted file mode 100644 index 539edb0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 deleted file mode 100644 index af8a382..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 deleted file mode 100644 index af7fe2c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA deleted file mode 100644 index 45d0e6f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC deleted file mode 100644 index d033974..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC deleted file mode 100644 index 831c0f7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC deleted file mode 100644 index 1a36c22..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE deleted file mode 100644 index 49a5e86..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE deleted file mode 100644 index a55ade7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE deleted file mode 100644 index d2bf994..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE deleted file mode 100644 index 3d80826..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF deleted file mode 100644 index 6ff7cbe..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH deleted file mode 100644 index fe2cb47..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH deleted file mode 100644 index e69f781..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ deleted file mode 100644 index 1245aea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ deleted file mode 100644 index 311a96f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK deleted file mode 100644 index e000922..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/VelodyAPIClient.swift-2GJC99CIJ2HOL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/VelodyAPIClient.swift-2GJC99CIJ2HOL deleted file mode 100644 index 58fe59b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/VelodyAPIClient.swift-2GJC99CIJ2HOL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM deleted file mode 100644 index e00f5d4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO deleted file mode 100644 index 35866a0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO deleted file mode 100644 index db0fdcb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP deleted file mode 100644 index 98e32a7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR deleted file mode 100644 index 7ab7b72..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR deleted file mode 100644 index e55d377..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT deleted file mode 100644 index 4d6c93a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU deleted file mode 100644 index 0b8ee9b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU deleted file mode 100644 index a555079..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW deleted file mode 100644 index a6574eb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX deleted file mode 100644 index 25204c4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY deleted file mode 100644 index b8d5c7e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ deleted file mode 100644 index 860b836..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 deleted file mode 100644 index 2d16f1a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 deleted file mode 100644 index 6a82d6a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 deleted file mode 100644 index 8645d06..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 deleted file mode 100644 index 5fd5375..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 deleted file mode 100644 index 1281744..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 deleted file mode 100644 index 2edef90..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB deleted file mode 100644 index 4ec958b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC deleted file mode 100644 index 88787c3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD deleted file mode 100644 index 7a56f1d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE deleted file mode 100644 index afd364e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG deleted file mode 100644 index 04c5590..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG deleted file mode 100644 index 6fce1f3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH deleted file mode 100644 index 0f0b4e7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH deleted file mode 100644 index 7231991..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM deleted file mode 100644 index b649fbf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN deleted file mode 100644 index 2c364de..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP deleted file mode 100644 index e4db422..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP deleted file mode 100644 index 1b7f00e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU deleted file mode 100644 index a759ac1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU deleted file mode 100644 index d7baba6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX deleted file mode 100644 index 9297890..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 deleted file mode 100644 index af217a0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 deleted file mode 100644 index 8c5a92b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 deleted file mode 100644 index ac5a387..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 deleted file mode 100644 index 513ef16..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 deleted file mode 100644 index bd5de72..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 deleted file mode 100644 index b12fb8a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 deleted file mode 100644 index c42ce5c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 deleted file mode 100644 index 742bd70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 deleted file mode 100644 index bce863e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 deleted file mode 100644 index f89345b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 deleted file mode 100644 index 8d39233..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA deleted file mode 100644 index 7077d63..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC deleted file mode 100644 index 46fedd3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD deleted file mode 100644 index 930725e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE deleted file mode 100644 index 4ce52eb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH deleted file mode 100644 index 629a4e2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH deleted file mode 100644 index 3d8a18f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH deleted file mode 100644 index c1b7eaa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH deleted file mode 100644 index a24b632..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM deleted file mode 100644 index c8a68a7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO deleted file mode 100644 index 17a818b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO deleted file mode 100644 index 1619f41..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP deleted file mode 100644 index 82e3682..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ deleted file mode 100644 index 407e98d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR deleted file mode 100644 index 1c13152..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR deleted file mode 100644 index 2fa551f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR deleted file mode 100644 index c8d0d92..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW deleted file mode 100644 index 3bedd50..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW deleted file mode 100644 index f63d9f0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX deleted file mode 100644 index 0ccceb7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 deleted file mode 100644 index 8fb1d8b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 deleted file mode 100644 index bb8fef5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 deleted file mode 100644 index d3d6e0b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 deleted file mode 100644 index 6bd921c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 deleted file mode 100644 index bf8444f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 deleted file mode 100644 index cc35153..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 deleted file mode 100644 index 14d279a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 deleted file mode 100644 index 7e6da69..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA deleted file mode 100644 index f2b4835..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA deleted file mode 100644 index 083b7d6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD deleted file mode 100644 index b2a7e49..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD deleted file mode 100644 index ca7a120..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF deleted file mode 100644 index 39337eb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF deleted file mode 100644 index 1db2467..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH deleted file mode 100644 index 4a5f2a2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH deleted file mode 100644 index 7d27822..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH deleted file mode 100644 index d936087..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH deleted file mode 100644 index 9450f23..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI deleted file mode 100644 index 301cc2b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ deleted file mode 100644 index bb0a81a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN deleted file mode 100644 index e5fdea2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO deleted file mode 100644 index d1431d7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP deleted file mode 100644 index cefb4e6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ deleted file mode 100644 index c13baa9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ deleted file mode 100644 index 48acd71..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR deleted file mode 100644 index 0b49caf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR deleted file mode 100644 index 7c47e64..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV deleted file mode 100644 index 6f2a62a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV deleted file mode 100644 index a735400..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV deleted file mode 100644 index 5d51994..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY deleted file mode 100644 index fd18b99..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ deleted file mode 100644 index 20a9dfd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 deleted file mode 100644 index 01be1b4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 deleted file mode 100644 index 145e895..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 deleted file mode 100644 index b2b73b5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 deleted file mode 100644 index af52021..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 deleted file mode 100644 index 7c5ff63..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 deleted file mode 100644 index 324c630..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 deleted file mode 100644 index 9f7ce0a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 deleted file mode 100644 index bc7d2bc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA deleted file mode 100644 index 3630258..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC deleted file mode 100644 index 9da8058..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE deleted file mode 100644 index 94f0371..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG deleted file mode 100644 index 2ec9437..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG deleted file mode 100644 index b086849..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI deleted file mode 100644 index f74bb30..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI deleted file mode 100644 index a3c5891..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI deleted file mode 100644 index c0c6a03..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI deleted file mode 100644 index da580a1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ deleted file mode 100644 index e11ba63..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK deleted file mode 100644 index cbc68f6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL deleted file mode 100644 index 5d52267..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR deleted file mode 100644 index 7f96087..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV deleted file mode 100644 index 2254cd9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 deleted file mode 100644 index 9fa1e53..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 deleted file mode 100644 index a210c18..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 deleted file mode 100644 index f600049..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 deleted file mode 100644 index 3f784fd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 deleted file mode 100644 index 08804a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 deleted file mode 100644 index 32b3512..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 deleted file mode 100644 index 500364b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 deleted file mode 100644 index 1e2f36c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 deleted file mode 100644 index b0cfbd8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 deleted file mode 100644 index c773c00..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 deleted file mode 100644 index 4b159d0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 deleted file mode 100644 index a1bd6ba..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 deleted file mode 100644 index bbf274c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 deleted file mode 100644 index 43c9a93..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 deleted file mode 100644 index bcefb87..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 deleted file mode 100644 index 5aa7b8f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 deleted file mode 100644 index ae2d979..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 deleted file mode 100644 index c7c1146..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA deleted file mode 100644 index d4076b9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA deleted file mode 100644 index 1c5a675..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB deleted file mode 100644 index cbee880..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC deleted file mode 100644 index a28655a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC deleted file mode 100644 index 3918bed..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC deleted file mode 100644 index 0f6e627..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD deleted file mode 100644 index 6c5d4f7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG deleted file mode 100644 index f13728a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG deleted file mode 100644 index f62ce29..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI deleted file mode 100644 index 5d1b1dc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK deleted file mode 100644 index 29e1a21..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM deleted file mode 100644 index 98a7eea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP deleted file mode 100644 index c098247..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ deleted file mode 100644 index 498666e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ deleted file mode 100644 index b97090a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR deleted file mode 100644 index 625e5a1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS deleted file mode 100644 index 5a0e311..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT deleted file mode 100644 index 34ca26f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT deleted file mode 100644 index 6e1479e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU deleted file mode 100644 index 2187700..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV deleted file mode 100644 index afff976..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW deleted file mode 100644 index 5a2e0dd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY deleted file mode 100644 index 96edce7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 deleted file mode 100644 index c26d811..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 deleted file mode 100644 index 7e9d6e5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 deleted file mode 100644 index e14c025..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 deleted file mode 100644 index 471548d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 deleted file mode 100644 index add69a0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 deleted file mode 100644 index 67597a1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 deleted file mode 100644 index a65162c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 deleted file mode 100644 index 2401bb1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 deleted file mode 100644 index 4a43a82..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 deleted file mode 100644 index 7338a3a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 deleted file mode 100644 index 4cd3afd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 deleted file mode 100644 index ea751c4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA deleted file mode 100644 index 26a428a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA deleted file mode 100644 index 4be0987..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA deleted file mode 100644 index df05d54..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB deleted file mode 100644 index ff2f313..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC deleted file mode 100644 index 6e9ce82..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD deleted file mode 100644 index 42ad46c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD deleted file mode 100644 index 0456eb3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF deleted file mode 100644 index dd67602..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF deleted file mode 100644 index b683d45..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG deleted file mode 100644 index 49444e0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH deleted file mode 100644 index f5344ed..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK deleted file mode 100644 index f3cb140..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM deleted file mode 100644 index a9c6664..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM deleted file mode 100644 index 2348687..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN deleted file mode 100644 index 1c2c361..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN deleted file mode 100644 index 7b4238a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN deleted file mode 100644 index 6a37e84..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP deleted file mode 100644 index ae493f3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR deleted file mode 100644 index e0d0e9f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR deleted file mode 100644 index 81b09e0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS deleted file mode 100644 index 464813f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT deleted file mode 100644 index 24419e8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV deleted file mode 100644 index 28fb61c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV deleted file mode 100644 index b954e17..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW deleted file mode 100644 index 593acff..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX deleted file mode 100644 index fe906b3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 deleted file mode 100644 index 2af60df..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 deleted file mode 100644 index 754449c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 deleted file mode 100644 index 79cd522..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 deleted file mode 100644 index 602760e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 deleted file mode 100644 index 4b40daf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 deleted file mode 100644 index 070a6aa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA deleted file mode 100644 index 47ee1a9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB deleted file mode 100644 index 5d6320d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD deleted file mode 100644 index 0598add..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF deleted file mode 100644 index bda2f80..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH deleted file mode 100644 index a1ea006..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ deleted file mode 100644 index 3b015fa..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK deleted file mode 100644 index 8a46523..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN deleted file mode 100644 index b7aef16..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN deleted file mode 100644 index 302681a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO deleted file mode 100644 index cf5f422..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO deleted file mode 100644 index de03261..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO deleted file mode 100644 index 9445b63..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ deleted file mode 100644 index 801bd67..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR deleted file mode 100644 index 4d61cae..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU deleted file mode 100644 index bc5c92e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU deleted file mode 100644 index ffbc0d1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV deleted file mode 100644 index 31b9890..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW deleted file mode 100644 index 93e6b21..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 deleted file mode 100644 index 08cf58a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 deleted file mode 100644 index 4d16f48..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 deleted file mode 100644 index 61db7bd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 deleted file mode 100644 index 3dedfe2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 deleted file mode 100644 index e221004..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 deleted file mode 100644 index 1e2d9a8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 deleted file mode 100644 index 9b51892..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 deleted file mode 100644 index 44bf47b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 deleted file mode 100644 index bd23051..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA deleted file mode 100644 index b3815ea..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD deleted file mode 100644 index 3411a21..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE deleted file mode 100644 index 3dfeb86..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE deleted file mode 100644 index fdb1bf6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG deleted file mode 100644 index 9d1f5af..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG deleted file mode 100644 index c9295da..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI deleted file mode 100644 index a0d7f3c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI deleted file mode 100644 index a7cf809..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI deleted file mode 100644 index 0eba9a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK deleted file mode 100644 index ef6c4a4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK deleted file mode 100644 index 1de5d0c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM deleted file mode 100644 index c64bd83..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO deleted file mode 100644 index b4303e5..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO deleted file mode 100644 index 8896cfe..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP deleted file mode 100644 index 7194a03..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR deleted file mode 100644 index f37bf98..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR deleted file mode 100644 index 9bb3941..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT deleted file mode 100644 index 188c2a2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU deleted file mode 100644 index 1fed6c6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV deleted file mode 100644 index 73c06c8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW deleted file mode 100644 index 8ce78e6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX deleted file mode 100644 index 6a3facd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ deleted file mode 100644 index 5a97458..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 deleted file mode 100644 index 9e9ff6e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 deleted file mode 100644 index 68e3081..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 deleted file mode 100644 index a058bc3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 deleted file mode 100644 index fb78df3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC deleted file mode 100644 index 81980ed..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF deleted file mode 100644 index cc8e14e..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG deleted file mode 100644 index 2a20fb3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG deleted file mode 100644 index c4040c1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK deleted file mode 100644 index cc08a59..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM deleted file mode 100644 index eabeffc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM deleted file mode 100644 index bc09720..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO deleted file mode 100644 index 229e7ba..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO deleted file mode 100644 index d5e8abb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP deleted file mode 100644 index 16082d9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP deleted file mode 100644 index 6395fda..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ deleted file mode 100644 index 0ed717a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR deleted file mode 100644 index 2b10d00..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR deleted file mode 100644 index 902a1dd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU deleted file mode 100644 index c337502..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV deleted file mode 100644 index 2255a6c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX deleted file mode 100644 index 6ebac89..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX deleted file mode 100644 index 28ca2a6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY deleted file mode 100644 index 54c8ded..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 deleted file mode 100644 index 6f0c817..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 deleted file mode 100644 index bf3245a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 deleted file mode 100644 index 0c9ffed..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 deleted file mode 100644 index a575d81..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 deleted file mode 100644 index ed2df11..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 deleted file mode 100644 index 006f166..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 deleted file mode 100644 index 4ecac1f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 deleted file mode 100644 index cdeb6de..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 deleted file mode 100644 index eeb91d7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 deleted file mode 100644 index 6c772a2..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE deleted file mode 100644 index e993166..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG deleted file mode 100644 index 3f49555..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH deleted file mode 100644 index 5b1f9c9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ deleted file mode 100644 index 03db300..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR deleted file mode 100644 index 6bc333c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT deleted file mode 100644 index fda9bef..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT deleted file mode 100644 index 499eb63..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU deleted file mode 100644 index 549d575..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV deleted file mode 100644 index 02aca3b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV deleted file mode 100644 index e5b0e2a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV deleted file mode 100644 index 6848f18..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW deleted file mode 100644 index 49f79d7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW deleted file mode 100644 index 539681c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW deleted file mode 100644 index d146012..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW deleted file mode 100644 index 168f297..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX deleted file mode 100644 index 2cc39a9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY deleted file mode 100644 index fbdd550..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY deleted file mode 100644 index fb9d08b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY deleted file mode 100644 index b52db97..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 deleted file mode 100644 index 80ac77f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 deleted file mode 100644 index d786447..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 deleted file mode 100644 index ef379ce..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 deleted file mode 100644 index 90bc7b1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 deleted file mode 100644 index b9279be..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 deleted file mode 100644 index 9cc9ca6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 deleted file mode 100644 index 7b6e0be..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 deleted file mode 100644 index 74136d4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 deleted file mode 100644 index c9b32ca..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 deleted file mode 100644 index b43d449..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB deleted file mode 100644 index 02c2631..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB deleted file mode 100644 index 8640e31..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC deleted file mode 100644 index 6e097c1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC deleted file mode 100644 index f5d62e3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC deleted file mode 100644 index 420075c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD deleted file mode 100644 index fb252b1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE deleted file mode 100644 index fee6ff6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE deleted file mode 100644 index 2f30076..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG deleted file mode 100644 index f459cdc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG deleted file mode 100644 index da29210..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG deleted file mode 100644 index 24dd7fb..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH deleted file mode 100644 index f8ad16f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ deleted file mode 100644 index c2f6c6a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO deleted file mode 100644 index 617bcdf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP deleted file mode 100644 index dd58815..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR deleted file mode 100644 index f04f995..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR deleted file mode 100644 index 6a51c98..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR deleted file mode 100644 index 58c848f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS deleted file mode 100644 index 0629187..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW deleted file mode 100644 index 65eb0b4..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX deleted file mode 100644 index cd88664..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX deleted file mode 100644 index f799da1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY deleted file mode 100644 index 34817bd..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ deleted file mode 100644 index 035a980..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ deleted file mode 100644 index 44a6435..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-29181R6HA7OTI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-29181R6HA7OTI deleted file mode 100644 index 164eaf9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-29181R6HA7OTI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2RMF9UCDIJOU7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2RMF9UCDIJOU7 deleted file mode 100644 index 939dae1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2RMF9UCDIJOU7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-1FOUKGXTF8V0M b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-1FOUKGXTF8V0M deleted file mode 100644 index 616ffd6..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-1FOUKGXTF8V0M and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-18Z9Y5X4A3GH4 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-18Z9Y5X4A3GH4 deleted file mode 100644 index 9f677f1..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-18Z9Y5X4A3GH4 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-WNLEBHMIVDYU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-WNLEBHMIVDYU deleted file mode 100644 index 90ee0ee..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-WNLEBHMIVDYU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-1GE51UWMQSOMT b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-1GE51UWMQSOMT deleted file mode 100644 index 54e4913..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-1GE51UWMQSOMT and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-11EQ04HD32R5L b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-11EQ04HD32R5L deleted file mode 100644 index 8eb0f69..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-11EQ04HD32R5L and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-3Q4C1NVVKY162 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-3Q4C1NVVKY162 deleted file mode 100644 index 88e6493..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-3Q4C1NVVKY162 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-1ZRF617ELNGDP b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-1ZRF617ELNGDP deleted file mode 100644 index f6a3721..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-1ZRF617ELNGDP and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-154FU9NOO0YUK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-154FU9NOO0YUK deleted file mode 100644 index 9986545..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-154FU9NOO0YUK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-VUTKAQS03FZD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-VUTKAQS03FZD deleted file mode 100644 index 744c48b..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-VUTKAQS03FZD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3DZVKIW740LFU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3DZVKIW740LFU deleted file mode 100644 index f24cb60..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3DZVKIW740LFU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/VelodyAPIClient.swift.o-CVZ1QZS5N734 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/VelodyAPIClient.swift.o-CVZ1QZS5N734 deleted file mode 100644 index aa4ee30..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/VelodyAPIClient.swift.o-CVZ1QZS5N734 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-3LUXICBM13HON b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-3LUXICBM13HON deleted file mode 100644 index c3d6b09..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-3LUXICBM13HON and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-16CAY5YED3N5K b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-16CAY5YED3N5K deleted file mode 100644 index c1fd083..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-16CAY5YED3N5K and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-K2GKBSMZ8RHS b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-K2GKBSMZ8RHS deleted file mode 100644 index 28c1300..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-K2GKBSMZ8RHS and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-MG6TWPNA0BNI b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-MG6TWPNA0BNI deleted file mode 100644 index 9db9a43..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-MG6TWPNA0BNI and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-3NECAWRUFIBXD b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-3NECAWRUFIBXD deleted file mode 100644 index 4cf1753..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-3NECAWRUFIBXD and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-NQJMKB5LWY5N b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-NQJMKB5LWY5N deleted file mode 100644 index 47e234c..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-NQJMKB5LWY5N and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-AHAT7FJMUXHW b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-AHAT7FJMUXHW deleted file mode 100644 index f2cb467..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-AHAT7FJMUXHW and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-2NMP0K29BC64D b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-2NMP0K29BC64D deleted file mode 100644 index 34fb683..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-2NMP0K29BC64D and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2QZKE2TT5M8SZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2QZKE2TT5M8SZ deleted file mode 100644 index 3b9dc5f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2QZKE2TT5M8SZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-Q9KS01AYXEKB b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-Q9KS01AYXEKB deleted file mode 100644 index 89612d3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-Q9KS01AYXEKB and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-11U83NW7QS53T b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-11U83NW7QS53T deleted file mode 100644 index 5b3ee99..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-11U83NW7QS53T and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-CJES216VUA8E b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-CJES216VUA8E deleted file mode 100644 index d5077ff..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-CJES216VUA8E and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-1I6SXX359ZCD0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-1I6SXX359ZCD0 deleted file mode 100644 index 9b16f70..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-1I6SXX359ZCD0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 deleted file mode 100644 index f9d38a9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM deleted file mode 100644 index 05b01ae..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 deleted file mode 100644 index f70235d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 deleted file mode 100644 index 0d62774..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G deleted file mode 100644 index 7c0a5b0..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA deleted file mode 100644 index 25795dc..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC deleted file mode 100644 index be2274f..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 deleted file mode 100644 index b66ee52..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 deleted file mode 100644 index 8019d69..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 deleted file mode 100644 index aa8ddc9..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND deleted file mode 100644 index e5e48e8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V deleted file mode 100644 index 92d83e8..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC deleted file mode 100644 index dd09e99..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 deleted file mode 100644 index 9370b76..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF deleted file mode 100644 index 208d596..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-NHMUEBBELHRU b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-NHMUEBBELHRU deleted file mode 100644 index 95c246d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-NHMUEBBELHRU and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-3L84H8WBYCZG0 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-3L84H8WBYCZG0 deleted file mode 100644 index 3098c9d..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-3L84H8WBYCZG0 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-22L5TPXW0X2N8 b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-22L5TPXW0X2N8 deleted file mode 100644 index d4145cf..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-22L5TPXW0X2N8 and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-2GSMWFDO373DK b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-2GSMWFDO373DK deleted file mode 100644 index 78c19ce..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-2GSMWFDO373DK and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-1SY93T1X0OITZ b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-1SY93T1X0OITZ deleted file mode 100644 index 79b22b7..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-1SY93T1X0OITZ and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-11RYKF7G6UKLY b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-11RYKF7G6UKLY deleted file mode 100644 index 3e7251a..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-11RYKF7G6UKLY and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3P4ZEAY0WG5LL b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3P4ZEAY0WG5LL deleted file mode 100644 index b1c4ae3..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3P4ZEAY0WG5LL and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1APNWDFLDZB3A b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1APNWDFLDZB3A deleted file mode 100644 index 91f2b28..0000000 Binary files a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1APNWDFLDZB3A and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/plugin-tools-description.json b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/plugin-tools-description.json deleted file mode 100644 index 0e67ef9..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/plugin-tools-description.json +++ /dev/null @@ -1,395 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - }, - "C.VelodyNetworking-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyNetworking", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyNetworking" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyNetworking", - "-package-name", - "velodynetworking", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ], - "VelodyNetworking" : [ - "VelodyDomain" - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt b/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt deleted file mode 100644 index caf9e2b..0000000 --- a/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt +++ /dev/null @@ -1,2 +0,0 @@ -Apple Swift version 6.3.2 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -Target: arm64-apple-macosx26.0 diff --git a/packages/apple/VelodyNetworking/.build/build.db b/packages/apple/VelodyNetworking/.build/build.db deleted file mode 100644 index dfb4c17..0000000 Binary files a/packages/apple/VelodyNetworking/.build/build.db and /dev/null differ diff --git a/packages/apple/VelodyNetworking/.build/debug b/packages/apple/VelodyNetworking/.build/debug deleted file mode 120000 index 9733fca..0000000 --- a/packages/apple/VelodyNetworking/.build/debug +++ /dev/null @@ -1 +0,0 @@ -arm64-apple-macosx/debug \ No newline at end of file diff --git a/packages/apple/VelodyNetworking/.build/debug.yaml b/packages/apple/VelodyNetworking/.build/debug.yaml deleted file mode 100644 index a812081..0000000 --- a/packages/apple/VelodyNetworking/.build/debug.yaml +++ /dev/null @@ -1,66 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "VelodyNetworking-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "C.VelodyNetworking-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - description: "Compiling Swift Module 'VelodyNetworking' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyNetworking","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodynetworking"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyNetworking/.build/plugin-tools.yaml b/packages/apple/VelodyNetworking/.build/plugin-tools.yaml deleted file mode 100644 index a812081..0000000 --- a/packages/apple/VelodyNetworking/.build/plugin-tools.yaml +++ /dev/null @@ -1,66 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "VelodyNetworking-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "C.VelodyNetworking-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - description: "Compiling Swift Module 'VelodyNetworking' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyNetworking","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodynetworking"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyNetworking/.build/workspace-state.json b/packages/apple/VelodyNetworking/.build/workspace-state.json deleted file mode 100644 index 68d11ce..0000000 --- a/packages/apple/VelodyNetworking/.build/workspace-state.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "object" : { - "artifacts" : [ - - ], - "dependencies" : [ - { - "basedOn" : null, - "packageRef" : { - "identity" : "velodydomain", - "kind" : "fileSystem", - "location" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain", - "name" : "VelodyDomain" - }, - "state" : { - "name" : "fileSystem", - "path" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain" - }, - "subpath" : "velodydomain" - } - ], - "prebuilts" : [ - - ] - }, - "version" : 7 -} \ No newline at end of file diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm deleted file mode 100644 index 6e5f162..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm deleted file mode 100644 index 44db115..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm deleted file mode 100644 index b6a0add..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm deleted file mode 100644 index f0b4477..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm deleted file mode 100644 index 5b41450..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm deleted file mode 100644 index c5bc7d0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm deleted file mode 100644 index 81dd7b1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm deleted file mode 100644 index 2e0a36d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm deleted file mode 100644 index a28cfcd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm deleted file mode 100644 index 67a656e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm deleted file mode 100644 index d3fa08b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 83682af..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm deleted file mode 100644 index df9ae1f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm deleted file mode 100644 index 7c09346..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 5de9080..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 2dd7d90..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index f880fef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index dc0e8b1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index f54c410..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index c8dc35c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index c20e33f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm deleted file mode 100644 index c604293..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm deleted file mode 100644 index f043a12..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm deleted file mode 100644 index 820315d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 00e15a3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm deleted file mode 100644 index eb2a7d5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm deleted file mode 100644 index 395bd46..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm deleted file mode 100644 index af35869..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm deleted file mode 100644 index 898d70f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm deleted file mode 100644 index e28eec3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index b9c2145..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index a5929b7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm deleted file mode 100644 index aa6915d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule deleted file mode 100644 index 0d212ac..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 491412 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule deleted file mode 100644 index ec8012b..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule +++ /dev/null @@ -1,68 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405610000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 179160 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule deleted file mode 100644 index d8914c0..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule +++ /dev/null @@ -1,36 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 77504 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule deleted file mode 100644 index 95ebaec..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule +++ /dev/null @@ -1,64 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405605000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 210900 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule deleted file mode 100644 index 34a0aba..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule +++ /dev/null @@ -1,100 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405644000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 3785860 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1772776850000000000 - path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' - size: 162 - sdk_relative: true - - mtime: 1772253432000000000 - path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' - size: 81098 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true - - mtime: 1776564811000000000 - path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1155103 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule deleted file mode 100644 index c0fdeb6..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405613000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30136 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule deleted file mode 100644 index a2a4108..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule +++ /dev/null @@ -1,52 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405587000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 50836 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule deleted file mode 100644 index 748ae1f..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule +++ /dev/null @@ -1,44 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405589000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30876 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule deleted file mode 100644 index 1432dc9..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule +++ /dev/null @@ -1,12 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405569000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 15012500 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule deleted file mode 100644 index de1fb4a..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 18524 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559148000000000 - path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1411 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule deleted file mode 100644 index 3596a85..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 401660 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule deleted file mode 100644 index 83acb25..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405609000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 117716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule deleted file mode 100644 index fbe57da..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule deleted file mode 100644 index a57816b..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 748656 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule deleted file mode 100644 index 197735f..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405578000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 92188 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule deleted file mode 100644 index 698d567..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule +++ /dev/null @@ -1,24 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405579000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23256 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule deleted file mode 100644 index 824fb22..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule +++ /dev/null @@ -1,28 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405580000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 20564 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule deleted file mode 100644 index 8634693..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405576000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 84172 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp deleted file mode 100644 index e69de29..0000000 diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc deleted file mode 100644 index dd8a684..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule deleted file mode 100644 index 40239ba..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo deleted file mode 100644 index 87b0926..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.abi.json b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc deleted file mode 100644 index e71dde9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule deleted file mode 100644 index 216fc03..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo deleted file mode 100644 index 5974ae7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d deleted file mode 100644 index 6497eb4..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o deleted file mode 100644 index 2bf912e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps deleted file mode 100644 index 9427e5f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d deleted file mode 100644 index 2e5cc99..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h deleted file mode 100644 index fefd13b..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYDOMAIN_SWIFT_H -#define VELODYDOMAIN_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap deleted file mode 100644 index ec783c2..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyDomain { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h" -} diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json deleted file mode 100644 index 634d4fe..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia" - } -} diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors deleted file mode 100644 index bd694f1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources deleted file mode 100644 index 7727965..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d deleted file mode 100644 index 010e540..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o deleted file mode 100644 index d3899ba..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps deleted file mode 100644 index a5bbfcf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.d b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.d deleted file mode 100644 index 04f6e1d..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.dia b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h deleted file mode 100644 index 2a11cb9..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYPERSISTENCE_SWIFT_H -#define VELODYPERSISTENCE_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyPersistence",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyPersistence",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/module.modulemap b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/module.modulemap deleted file mode 100644 index 2217868..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyPersistence { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h" -} diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json deleted file mode 100644 index 433faa9..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia" - } -} diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.priors b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.priors deleted file mode 100644 index db22a23..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources deleted file mode 100644 index a3b0434..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/description.json b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/description.json deleted file mode 100644 index 335c755..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/description.json +++ /dev/null @@ -1,395 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - }, - "C.VelodyPersistence-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyPersistence", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyPersistence" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyPersistence", - "-package-name", - "velodypersistence", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ], - "VelodyPersistence" : [ - "VelodyDomain" - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 deleted file mode 100644 index d8de0d0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 deleted file mode 100644 index a3a9228..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 deleted file mode 100644 index 332cecc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 deleted file mode 100644 index 8ab5d97..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 deleted file mode 100644 index 3f7f1f4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 deleted file mode 100644 index 4ba51ab..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A deleted file mode 100644 index 9dc6451..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B deleted file mode 100644 index de0d748..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C deleted file mode 100644 index 2d7bd3c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C deleted file mode 100644 index 1c187c1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D deleted file mode 100644 index f552bbf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F deleted file mode 100644 index 9784784..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G deleted file mode 100644 index 8c39ec2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I deleted file mode 100644 index 4131c00..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I deleted file mode 100644 index ba2a57d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K deleted file mode 100644 index 472d29d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L deleted file mode 100644 index 3865ab3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L deleted file mode 100644 index 7d87af8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M deleted file mode 100644 index c659b9c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P deleted file mode 100644 index 776035c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q deleted file mode 100644 index 2ccb007..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R deleted file mode 100644 index 0988fed..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S deleted file mode 100644 index 70eaab4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V deleted file mode 100644 index f142839..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W deleted file mode 100644 index 3fc3c57..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X deleted file mode 100644 index d92858e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X deleted file mode 100644 index 65fbaee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z deleted file mode 100644 index b015911..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 deleted file mode 100644 index fc81374..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 deleted file mode 100644 index 48d8ee3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 deleted file mode 100644 index 5674743..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 deleted file mode 100644 index 6e84472..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 deleted file mode 100644 index e3acd29..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 deleted file mode 100644 index f793c0c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 deleted file mode 100644 index 87575cf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 deleted file mode 100644 index 7a74614..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 deleted file mode 100644 index 2fb6304..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 deleted file mode 100644 index 66750c4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 deleted file mode 100644 index e76046c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 deleted file mode 100644 index f605b23..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 deleted file mode 100644 index beb3eaa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 deleted file mode 100644 index c8fb1a1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 deleted file mode 100644 index 92d491d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 deleted file mode 100644 index 9cedb84..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 deleted file mode 100644 index 9ef1b4f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 deleted file mode 100644 index 2fa39fd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B deleted file mode 100644 index d63482d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B deleted file mode 100644 index f913215..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C deleted file mode 100644 index 69ceaf3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F deleted file mode 100644 index c0704f0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I deleted file mode 100644 index ecde0c5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I deleted file mode 100644 index 807c71f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I deleted file mode 100644 index 74b5449..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I deleted file mode 100644 index b241d51..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I deleted file mode 100644 index ae9b5e5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J deleted file mode 100644 index 315f757..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K deleted file mode 100644 index 25f5b8d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N deleted file mode 100644 index 2832534..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N deleted file mode 100644 index db107cb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q deleted file mode 100644 index e2b8122..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R deleted file mode 100644 index 4315342..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W deleted file mode 100644 index bf7e3e8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X deleted file mode 100644 index 9f59f70..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z deleted file mode 100644 index ddbd47b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 deleted file mode 100644 index 9a6aac6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 deleted file mode 100644 index e3587a6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 deleted file mode 100644 index 15a8f88..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 deleted file mode 100644 index cad8dca..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 deleted file mode 100644 index 4fef39b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 deleted file mode 100644 index b05a151..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A deleted file mode 100644 index e8f7f6f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C deleted file mode 100644 index 09d6f89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D deleted file mode 100644 index 41de67b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E deleted file mode 100644 index 8f5c69b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E deleted file mode 100644 index 9f42e38..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F deleted file mode 100644 index cb48ea9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H deleted file mode 100644 index 1b90c98..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I deleted file mode 100644 index a9d8c35..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K deleted file mode 100644 index 154c8c4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O deleted file mode 100644 index 5c4dcf1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q deleted file mode 100644 index 754ef57..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R deleted file mode 100644 index e9d8da2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S deleted file mode 100644 index 4f8a13d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S deleted file mode 100644 index 727e0ff..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U deleted file mode 100644 index 44436b4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U deleted file mode 100644 index ef7fa0f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U deleted file mode 100644 index ca6edfc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U deleted file mode 100644 index 1a9b16f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V deleted file mode 100644 index 52d7cd9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z deleted file mode 100644 index c9b3910..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z deleted file mode 100644 index 5a10275..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 deleted file mode 100644 index fc00457..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 deleted file mode 100644 index 3db7277..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 deleted file mode 100644 index f93985c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 deleted file mode 100644 index e86e3e7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 deleted file mode 100644 index 3e9bd95..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 deleted file mode 100644 index 27edb3c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 deleted file mode 100644 index ba671da..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 deleted file mode 100644 index 59ddecf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 deleted file mode 100644 index f7dc6fb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C deleted file mode 100644 index ec48d2a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D deleted file mode 100644 index 2e22bd9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E deleted file mode 100644 index 7fe6d84..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F deleted file mode 100644 index 6cc497e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F deleted file mode 100644 index fb2179f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H deleted file mode 100644 index ffe050b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J deleted file mode 100644 index 727eae4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J deleted file mode 100644 index bd5ba39..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K deleted file mode 100644 index 19d4de3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K deleted file mode 100644 index d888ae2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K deleted file mode 100644 index f002fd2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L deleted file mode 100644 index aec02a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L deleted file mode 100644 index 9db0c86..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M deleted file mode 100644 index 5b387b6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O deleted file mode 100644 index bb15053..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q deleted file mode 100644 index 14232cb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q deleted file mode 100644 index c35d2db..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T deleted file mode 100644 index cdfa612..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U deleted file mode 100644 index 572e574..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U deleted file mode 100644 index 9cc36aa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V deleted file mode 100644 index dc32420..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V deleted file mode 100644 index e02c5c9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W deleted file mode 100644 index 7a56612..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X deleted file mode 100644 index 50435d1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X deleted file mode 100644 index 2ad8efe..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y deleted file mode 100644 index 3175c2b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z deleted file mode 100644 index c32a976..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 deleted file mode 100644 index 8746a3f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 deleted file mode 100644 index e302fee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 deleted file mode 100644 index a019c73..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 deleted file mode 100644 index ee3a337..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 deleted file mode 100644 index c970b9f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 deleted file mode 100644 index 621ff54..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 deleted file mode 100644 index bf13889..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C deleted file mode 100644 index 69bc594..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C deleted file mode 100644 index 37376cf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D deleted file mode 100644 index 959ae33..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E deleted file mode 100644 index 3c7cf0a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F deleted file mode 100644 index cfcce56..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I deleted file mode 100644 index e9afed6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K deleted file mode 100644 index 61024bb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O deleted file mode 100644 index e905484..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P deleted file mode 100644 index 84212f2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q deleted file mode 100644 index 47386d7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q deleted file mode 100644 index 711b99d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S deleted file mode 100644 index 82229a8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S deleted file mode 100644 index 13ce346..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V deleted file mode 100644 index 1b0f1c3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V deleted file mode 100644 index 92afd17..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W deleted file mode 100644 index bdf9135..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X deleted file mode 100644 index e79f069..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X deleted file mode 100644 index 889c4a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 deleted file mode 100644 index f587a0c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 deleted file mode 100644 index 9846567..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 deleted file mode 100644 index 62f1933..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 deleted file mode 100644 index f783edd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 deleted file mode 100644 index aacb5cb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 deleted file mode 100644 index 536822a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A deleted file mode 100644 index 1f3281a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B deleted file mode 100644 index e64ebec..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B deleted file mode 100644 index 9553b1d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C deleted file mode 100644 index 92f14d1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C deleted file mode 100644 index a27dd7f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D deleted file mode 100644 index d20239b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G deleted file mode 100644 index 44a63bd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H deleted file mode 100644 index 5106054..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J deleted file mode 100644 index 4ae78ee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K deleted file mode 100644 index 8626382..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N deleted file mode 100644 index d77c105..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O deleted file mode 100644 index 70c93b0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O deleted file mode 100644 index a4a2f86..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P deleted file mode 100644 index 712e3f1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q deleted file mode 100644 index 35310d5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R deleted file mode 100644 index a24a655..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R deleted file mode 100644 index 029a717..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S deleted file mode 100644 index 4992e48..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T deleted file mode 100644 index 82f2da3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U deleted file mode 100644 index d405781..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W deleted file mode 100644 index 8cb65e8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y deleted file mode 100644 index c0fc055..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y deleted file mode 100644 index 89a2019..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 deleted file mode 100644 index 9b669ff..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 deleted file mode 100644 index affc184..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 deleted file mode 100644 index baeeb13..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 deleted file mode 100644 index e4ddb61..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 deleted file mode 100644 index 7712a33..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 deleted file mode 100644 index fded31d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 deleted file mode 100644 index 66a4bd5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 deleted file mode 100644 index c98dd27..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A deleted file mode 100644 index 501f418..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C deleted file mode 100644 index e61e005..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E deleted file mode 100644 index 9c05cfb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E deleted file mode 100644 index 783e2eb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F deleted file mode 100644 index d91a944..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G deleted file mode 100644 index 13df552..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J deleted file mode 100644 index 1a7bef4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K deleted file mode 100644 index b98969c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M deleted file mode 100644 index 785c16d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N deleted file mode 100644 index 9b7055a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O deleted file mode 100644 index 27789e8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q deleted file mode 100644 index a049a95..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q deleted file mode 100644 index 18346d9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R deleted file mode 100644 index 862efef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V deleted file mode 100644 index 28ee5d0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W deleted file mode 100644 index 8f4ad95..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X deleted file mode 100644 index 9158251..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X deleted file mode 100644 index 0e845c5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X deleted file mode 100644 index 9265838..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z deleted file mode 100644 index a24ceaf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 deleted file mode 100644 index 0a9bd9a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 deleted file mode 100644 index 31d87a2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 deleted file mode 100644 index 50c4999..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 deleted file mode 100644 index 6832da8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 deleted file mode 100644 index c45b3ef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 deleted file mode 100644 index e2b8e02..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 deleted file mode 100644 index 6a8ee99..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 deleted file mode 100644 index 7c81948..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 deleted file mode 100644 index 05db54f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A deleted file mode 100644 index 7db2a09..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B deleted file mode 100644 index 3f40130..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E deleted file mode 100644 index b0e5156..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E deleted file mode 100644 index 5e048c9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I deleted file mode 100644 index 449759a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J deleted file mode 100644 index 0d9a398..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M deleted file mode 100644 index 4f8cb00..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N deleted file mode 100644 index 876f7b0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N deleted file mode 100644 index 329d02e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N deleted file mode 100644 index 8ee734e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N deleted file mode 100644 index bbc3cd5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O deleted file mode 100644 index 52dbb67..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P deleted file mode 100644 index 573c4b3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P deleted file mode 100644 index 80b8762..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P deleted file mode 100644 index 365fcd7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q deleted file mode 100644 index 3bb906e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q deleted file mode 100644 index 4ba95d3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T deleted file mode 100644 index 9979885..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X deleted file mode 100644 index 1cacce4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 deleted file mode 100644 index 87c0d82..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 deleted file mode 100644 index c8d1f6e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 deleted file mode 100644 index 86079b7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 deleted file mode 100644 index 13e7a8d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 deleted file mode 100644 index b6ce923..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 deleted file mode 100644 index eb679f2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 deleted file mode 100644 index 210f96b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 deleted file mode 100644 index 92877c9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 deleted file mode 100644 index d572318..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 deleted file mode 100644 index 8bad9b8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 deleted file mode 100644 index 5916c8b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 deleted file mode 100644 index 5d85a0e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 deleted file mode 100644 index 416befd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A deleted file mode 100644 index c94ad0f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C deleted file mode 100644 index d107423..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C deleted file mode 100644 index 401c3f6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E deleted file mode 100644 index 895d6e5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E deleted file mode 100644 index c5e43eb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E deleted file mode 100644 index b038767..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F deleted file mode 100644 index 35b4812..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H deleted file mode 100644 index 8484583..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I deleted file mode 100644 index c7be029..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N deleted file mode 100644 index f7f26c3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q deleted file mode 100644 index ebc4f3b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R deleted file mode 100644 index 5fcfa30..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R deleted file mode 100644 index 44803c8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S deleted file mode 100644 index 07dcd49..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S deleted file mode 100644 index 2bf1169..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S deleted file mode 100644 index c6876b2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S deleted file mode 100644 index e4b1b5e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V deleted file mode 100644 index 0c328f0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W deleted file mode 100644 index 54ebf16..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y deleted file mode 100644 index f2bc86d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 deleted file mode 100644 index 262ba18..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 deleted file mode 100644 index fad8d28..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 deleted file mode 100644 index 4ece05c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 deleted file mode 100644 index 6749e37..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 deleted file mode 100644 index 5861624..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 deleted file mode 100644 index 70fa602..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 deleted file mode 100644 index b4dbd3f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 deleted file mode 100644 index 9fe3fa1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 deleted file mode 100644 index 380db15..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 deleted file mode 100644 index f9b4d06..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A deleted file mode 100644 index 5047eb6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A deleted file mode 100644 index 22b3249..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E deleted file mode 100644 index 1eed699..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E deleted file mode 100644 index f3f1059..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E deleted file mode 100644 index 8cf3264..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E deleted file mode 100644 index 86ea927..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E deleted file mode 100644 index ad13c05..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G deleted file mode 100644 index 576be06..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H deleted file mode 100644 index c209f8f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H deleted file mode 100644 index f8e5d53..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I deleted file mode 100644 index 26ad779..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I deleted file mode 100644 index 0a6ee79..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J deleted file mode 100644 index 428d376..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K deleted file mode 100644 index dbc2c54..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L deleted file mode 100644 index 3e070be..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N deleted file mode 100644 index d66e284..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N deleted file mode 100644 index 54b874c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O deleted file mode 100644 index c838be9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R deleted file mode 100644 index f361f1b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R deleted file mode 100644 index 389e65a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S deleted file mode 100644 index 2658a1a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y deleted file mode 100644 index 82ea224..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z deleted file mode 100644 index 60bc4a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z deleted file mode 100644 index 6091df7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z deleted file mode 100644 index 277e767..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 deleted file mode 100644 index 9bfdcee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 deleted file mode 100644 index 7d9bcb4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 deleted file mode 100644 index cb0241c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 deleted file mode 100644 index e25aea0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 deleted file mode 100644 index ddf97ef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 deleted file mode 100644 index 746b114..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 deleted file mode 100644 index e9ee484..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 deleted file mode 100644 index a0dc8aa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB deleted file mode 100644 index f6b2eb6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD deleted file mode 100644 index 06e7645..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF deleted file mode 100644 index 5a519ac..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG deleted file mode 100644 index a823a70..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG deleted file mode 100644 index 14543cf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG deleted file mode 100644 index 717c3b1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ deleted file mode 100644 index 2e2e836..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ deleted file mode 100644 index c76c0a2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL deleted file mode 100644 index 343d386..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM deleted file mode 100644 index 78f5d23..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM deleted file mode 100644 index dc78a0a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM deleted file mode 100644 index 84bc5cd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO deleted file mode 100644 index a4228c1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP deleted file mode 100644 index 2c2a455..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ deleted file mode 100644 index 5393ad2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ deleted file mode 100644 index ab82173..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ deleted file mode 100644 index 4d2ac38..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT deleted file mode 100644 index 838c4be..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT deleted file mode 100644 index 01a0389..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT deleted file mode 100644 index d250f5b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT deleted file mode 100644 index 079634e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU deleted file mode 100644 index 3072fcc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU deleted file mode 100644 index f6e6108..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW deleted file mode 100644 index 3562423..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW deleted file mode 100644 index d66edef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX deleted file mode 100644 index 50dd6d3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX deleted file mode 100644 index ee7d1cc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY deleted file mode 100644 index fa91362..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ deleted file mode 100644 index ae2fbfe..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ deleted file mode 100644 index 529c005..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 deleted file mode 100644 index b0fed79..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 deleted file mode 100644 index c08b2f5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 deleted file mode 100644 index 17d43a1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 deleted file mode 100644 index 9803275..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 deleted file mode 100644 index 7f5924b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 deleted file mode 100644 index 18b1c54..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA deleted file mode 100644 index 276b65c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA deleted file mode 100644 index de2efa3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB deleted file mode 100644 index 07f3f83..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB deleted file mode 100644 index 09633c1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC deleted file mode 100644 index c96ce93..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD deleted file mode 100644 index 316809e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD deleted file mode 100644 index 5a9d7e1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD deleted file mode 100644 index 02de3fa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE deleted file mode 100644 index 8fb64f8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG deleted file mode 100644 index 754bbdc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH deleted file mode 100644 index 1aa2aa5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH deleted file mode 100644 index 46c4a43..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ deleted file mode 100644 index bb27f4b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ deleted file mode 100644 index f9bab7e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK deleted file mode 100644 index c0db6bf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL deleted file mode 100644 index 9ef7f7c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL deleted file mode 100644 index 9b946c5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP deleted file mode 100644 index 50f0a18..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ deleted file mode 100644 index 8151f91..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ deleted file mode 100644 index 074a126..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR deleted file mode 100644 index 462e4ba..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS deleted file mode 100644 index 1f05727..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT deleted file mode 100644 index 4c7c78b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT deleted file mode 100644 index 894d506..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV deleted file mode 100644 index d23b640..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX deleted file mode 100644 index 9adbb60..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY deleted file mode 100644 index 467ff86..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY deleted file mode 100644 index e889031..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY deleted file mode 100644 index e9baa43..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 deleted file mode 100644 index f0ae61d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 deleted file mode 100644 index 7c9d232..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 deleted file mode 100644 index ffa1f52..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 deleted file mode 100644 index e8551d6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 deleted file mode 100644 index 5e21b19..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 deleted file mode 100644 index 4f21474..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 deleted file mode 100644 index 06eee31..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 deleted file mode 100644 index 9f6eef0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 deleted file mode 100644 index 2c2afe3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB deleted file mode 100644 index f4aa8bb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB deleted file mode 100644 index fabdbfd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC deleted file mode 100644 index ba56bee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD deleted file mode 100644 index 5a67bda..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF deleted file mode 100644 index 7991a14..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI deleted file mode 100644 index f3df3a0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI deleted file mode 100644 index 2a0f007..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK deleted file mode 100644 index 08bfafe..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL deleted file mode 100644 index 6015d1a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN deleted file mode 100644 index 0ed72f0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN deleted file mode 100644 index 7d378d8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP deleted file mode 100644 index 96aafdd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP deleted file mode 100644 index 11ca7b2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ deleted file mode 100644 index ef1aaa4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR deleted file mode 100644 index c5bbb59..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR deleted file mode 100644 index fda3d92..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR deleted file mode 100644 index e202544..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT deleted file mode 100644 index 374489a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT deleted file mode 100644 index a0ce498..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT deleted file mode 100644 index 47a0e5a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV deleted file mode 100644 index 500a147..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW deleted file mode 100644 index 1dc59a0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW deleted file mode 100644 index 1538f7b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX deleted file mode 100644 index ce3fbfb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX deleted file mode 100644 index 966c6b0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY deleted file mode 100644 index cf36aae..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ deleted file mode 100644 index abf6f84..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 deleted file mode 100644 index ae76537..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 deleted file mode 100644 index 1067b53..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 deleted file mode 100644 index c3239c1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 deleted file mode 100644 index 17871d5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 deleted file mode 100644 index 984656c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 deleted file mode 100644 index 06b0431..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB deleted file mode 100644 index a3fae8d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC deleted file mode 100644 index daa2ba6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD deleted file mode 100644 index 559341b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE deleted file mode 100644 index ce97f80..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF deleted file mode 100644 index 7955fa0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF deleted file mode 100644 index ec2aa3f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG deleted file mode 100644 index f2428d9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG deleted file mode 100644 index 026c3fb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG deleted file mode 100644 index 8793a3b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG deleted file mode 100644 index bd2c21b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH deleted file mode 100644 index 1311245..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI deleted file mode 100644 index ea5e317..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ deleted file mode 100644 index 7043717..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ deleted file mode 100644 index 3c16be4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL deleted file mode 100644 index 7e5a047..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL deleted file mode 100644 index 210cec5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM deleted file mode 100644 index 48c83c9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN deleted file mode 100644 index 205dcc8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO deleted file mode 100644 index 62c96cb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO deleted file mode 100644 index e623db9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR deleted file mode 100644 index 20f82b8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS deleted file mode 100644 index 73b6eb3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU deleted file mode 100644 index 282cef0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX deleted file mode 100644 index b5c5ae5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX deleted file mode 100644 index de5325a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY deleted file mode 100644 index e60f47a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY deleted file mode 100644 index 3274f0b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 deleted file mode 100644 index c50b37c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 deleted file mode 100644 index e8541dd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 deleted file mode 100644 index 7950a47..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 deleted file mode 100644 index 384a5ea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 deleted file mode 100644 index 492a399..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 deleted file mode 100644 index 367a260..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 deleted file mode 100644 index f3765fc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 deleted file mode 100644 index 86faf28..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 deleted file mode 100644 index 5ce3e2c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA deleted file mode 100644 index da4615d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED deleted file mode 100644 index 175ce69..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF deleted file mode 100644 index f8a6eae..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF deleted file mode 100644 index 335af7b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH deleted file mode 100644 index 1ea602c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI deleted file mode 100644 index 887241f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK deleted file mode 100644 index de31f3f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL deleted file mode 100644 index 30fec6b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM deleted file mode 100644 index 93257b4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM deleted file mode 100644 index 854a2e4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN deleted file mode 100644 index ada09ad..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP deleted file mode 100644 index 25bf52d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP deleted file mode 100644 index d940b08..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ deleted file mode 100644 index 7a101c9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER deleted file mode 100644 index 7c04534..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER deleted file mode 100644 index ba23380..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER deleted file mode 100644 index 352bfd1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET deleted file mode 100644 index eea6ca3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU deleted file mode 100644 index 4f7dfc9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV deleted file mode 100644 index 22d127b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW deleted file mode 100644 index 6cf7918..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 deleted file mode 100644 index b8b046b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 deleted file mode 100644 index d1b83c0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 deleted file mode 100644 index 992a7de..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 deleted file mode 100644 index 200679a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 deleted file mode 100644 index 1214f89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 deleted file mode 100644 index 74e8b16..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 deleted file mode 100644 index 8e6eccb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 deleted file mode 100644 index 76e8da3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 deleted file mode 100644 index 91690d9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 deleted file mode 100644 index 99b3bea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 deleted file mode 100644 index e466016..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 deleted file mode 100644 index bbc9666..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 deleted file mode 100644 index d7a9428..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 deleted file mode 100644 index 5c4fb89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA deleted file mode 100644 index 4b53d2d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA deleted file mode 100644 index 738e4d2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD deleted file mode 100644 index 4c1f051..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE deleted file mode 100644 index d649bdc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE deleted file mode 100644 index 2ca274e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI deleted file mode 100644 index 7a07368..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK deleted file mode 100644 index 463cf3b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK deleted file mode 100644 index 3a73af2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK deleted file mode 100644 index 7101aaa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM deleted file mode 100644 index 5eebe0c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN deleted file mode 100644 index c4b21a9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ deleted file mode 100644 index ce8050f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS deleted file mode 100644 index ce4f65a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS deleted file mode 100644 index a096cee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS deleted file mode 100644 index f7f04f1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV deleted file mode 100644 index a64a372..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW deleted file mode 100644 index fe8ab82..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW deleted file mode 100644 index 43bf864..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX deleted file mode 100644 index 2b06ede..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX deleted file mode 100644 index 22887eb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY deleted file mode 100644 index dff0a8e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ deleted file mode 100644 index c9eeaf2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ deleted file mode 100644 index 6c79289..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 deleted file mode 100644 index da6cae3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 deleted file mode 100644 index c6a9e0b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 deleted file mode 100644 index 6384e93..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 deleted file mode 100644 index 32adb89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 deleted file mode 100644 index ecd3234..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 deleted file mode 100644 index 55d79b3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G5/LocalLibraryStore.swift-3SESJ5G9BFFG5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G5/LocalLibraryStore.swift-3SESJ5G9BFFG5 deleted file mode 100644 index 96ae2d6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G5/LocalLibraryStore.swift-3SESJ5G9BFFG5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 deleted file mode 100644 index a8d1b82..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 deleted file mode 100644 index c4ae13f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 deleted file mode 100644 index 31da2aa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 deleted file mode 100644 index 167736c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 deleted file mode 100644 index 33aaa89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB deleted file mode 100644 index a63ea11..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB deleted file mode 100644 index c3cea85..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC deleted file mode 100644 index 4f0a799..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC deleted file mode 100644 index d15fd65..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE deleted file mode 100644 index 307ca10..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE deleted file mode 100644 index b738694..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF deleted file mode 100644 index 560a27d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF deleted file mode 100644 index 3a10808..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF deleted file mode 100644 index f6b55dc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG deleted file mode 100644 index 321031a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH deleted file mode 100644 index d4ee4c5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI deleted file mode 100644 index 9522de4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI deleted file mode 100644 index 45a79ea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI deleted file mode 100644 index 1efd21a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL deleted file mode 100644 index 36238e1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN deleted file mode 100644 index a126530..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO deleted file mode 100644 index 1a3e01d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO deleted file mode 100644 index 4bff99e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO deleted file mode 100644 index c6eb519..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO deleted file mode 100644 index b0dbe28..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ deleted file mode 100644 index f3c6c4c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS deleted file mode 100644 index d6c5312..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT deleted file mode 100644 index 6a7ab98..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT deleted file mode 100644 index 455036b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY deleted file mode 100644 index 488da5c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 deleted file mode 100644 index ef15942..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 deleted file mode 100644 index ff6802a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 deleted file mode 100644 index c8b433f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 deleted file mode 100644 index 5c2c782..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 deleted file mode 100644 index 62cbd3f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 deleted file mode 100644 index 0da1314..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 deleted file mode 100644 index 7567236..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 deleted file mode 100644 index de2c99c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 deleted file mode 100644 index dc4a98d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 deleted file mode 100644 index 77893ea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 deleted file mode 100644 index 979dbbc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 deleted file mode 100644 index 66a6b05..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 deleted file mode 100644 index 1f2bc14..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 deleted file mode 100644 index 262743a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 deleted file mode 100644 index 1c0ab5e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA deleted file mode 100644 index e572bd4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC deleted file mode 100644 index fb0933b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG deleted file mode 100644 index a81ece2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH deleted file mode 100644 index f28aaef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH deleted file mode 100644 index b9bd040..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH deleted file mode 100644 index 75dd34f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ deleted file mode 100644 index 2eaee68..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM deleted file mode 100644 index b4802a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM deleted file mode 100644 index 71354ea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM deleted file mode 100644 index 64250fc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO deleted file mode 100644 index 123d730..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO deleted file mode 100644 index 776fb4d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP deleted file mode 100644 index c878f89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP deleted file mode 100644 index 4e38d3d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU deleted file mode 100644 index 40cb754..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV deleted file mode 100644 index 2e8c89e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW deleted file mode 100644 index 5838215..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY deleted file mode 100644 index c02aa7e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ deleted file mode 100644 index bf62572..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ deleted file mode 100644 index c9887cc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 deleted file mode 100644 index 901c801..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 deleted file mode 100644 index 6004312..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 deleted file mode 100644 index 277c389..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 deleted file mode 100644 index 9f76f90..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 deleted file mode 100644 index 5b4dd70..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 deleted file mode 100644 index fb78609..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 deleted file mode 100644 index d948f59..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 deleted file mode 100644 index bb5ba96..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 deleted file mode 100644 index 0d1945e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 deleted file mode 100644 index 9948923..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB deleted file mode 100644 index 6a3d0d4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID deleted file mode 100644 index f4ec351..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH deleted file mode 100644 index c10908e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II deleted file mode 100644 index a8035ee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ deleted file mode 100644 index 8b9f1a3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK deleted file mode 100644 index 61dc887..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK deleted file mode 100644 index 41e59a8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL deleted file mode 100644 index 318e8eb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL deleted file mode 100644 index d212048..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM deleted file mode 100644 index 3225789..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP deleted file mode 100644 index 12e45be..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP deleted file mode 100644 index f90ae8e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP deleted file mode 100644 index f014ff2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR deleted file mode 100644 index 483cee5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR deleted file mode 100644 index 3a8a528..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR deleted file mode 100644 index 22331cc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS deleted file mode 100644 index 24e5639..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT deleted file mode 100644 index fcda57f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW deleted file mode 100644 index 975f9b5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW deleted file mode 100644 index bbdce81..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW deleted file mode 100644 index 9d5996b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW deleted file mode 100644 index 5dc4af3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX deleted file mode 100644 index 114edba..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 deleted file mode 100644 index 9c39ad4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 deleted file mode 100644 index 954ccab..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 deleted file mode 100644 index 23791ed..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 deleted file mode 100644 index bb18797..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 deleted file mode 100644 index 46a1cc1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 deleted file mode 100644 index 418d7f9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 deleted file mode 100644 index 9017b56..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 deleted file mode 100644 index 6bb01fe..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 deleted file mode 100644 index ab0130a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 deleted file mode 100644 index f3fca6d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 deleted file mode 100644 index eb99a1e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 deleted file mode 100644 index 9e96d89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA deleted file mode 100644 index d54fc90..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD deleted file mode 100644 index e416433..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE deleted file mode 100644 index 66d0e68..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE deleted file mode 100644 index 3373be9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE deleted file mode 100644 index dfd5c5a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF deleted file mode 100644 index a6707a2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG deleted file mode 100644 index c7a589d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI deleted file mode 100644 index 3c2a974..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI deleted file mode 100644 index 288e974..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI deleted file mode 100644 index 912d5a0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ deleted file mode 100644 index 3ec34bf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL deleted file mode 100644 index 173f16f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM deleted file mode 100644 index b0fbcf6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM deleted file mode 100644 index 025965f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP deleted file mode 100644 index b0e192f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP deleted file mode 100644 index 0d50bb9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP deleted file mode 100644 index e13babe..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP deleted file mode 100644 index c6a19a8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP deleted file mode 100644 index 8a82aa6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ deleted file mode 100644 index 1502529..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR deleted file mode 100644 index 6626800..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS deleted file mode 100644 index 14e5496..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS deleted file mode 100644 index fa46766..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU deleted file mode 100644 index 6cef17b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW deleted file mode 100644 index e41ae54..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX deleted file mode 100644 index e17ca97..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY deleted file mode 100644 index f8eef19..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 deleted file mode 100644 index e861ed8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 deleted file mode 100644 index 3d70282..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 deleted file mode 100644 index 31cc150..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 deleted file mode 100644 index d9bdb0d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 deleted file mode 100644 index c57d809..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 deleted file mode 100644 index 4c5b971..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 deleted file mode 100644 index 492805c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 deleted file mode 100644 index ad244e2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 deleted file mode 100644 index 84e81a8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA deleted file mode 100644 index acb3f2a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA deleted file mode 100644 index 8f02097..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB deleted file mode 100644 index 643c677..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB deleted file mode 100644 index c2d4287..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB deleted file mode 100644 index c8b02f5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB deleted file mode 100644 index ab4c5af..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB deleted file mode 100644 index 40bcd70..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE deleted file mode 100644 index 1f50de1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE deleted file mode 100644 index 19c8766..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE deleted file mode 100644 index 864e8a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG deleted file mode 100644 index d373562..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG deleted file mode 100644 index 8bd0205..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI deleted file mode 100644 index ecd36e5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ deleted file mode 100644 index 98f98f5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ deleted file mode 100644 index 2b529df..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ deleted file mode 100644 index 7e09404..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ deleted file mode 100644 index b83d887..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL deleted file mode 100644 index 158fa28..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM deleted file mode 100644 index c11b623..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN deleted file mode 100644 index 74b1601..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN deleted file mode 100644 index 406ea94..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN deleted file mode 100644 index 28113ef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP deleted file mode 100644 index 6bbe539..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR deleted file mode 100644 index 11bf305..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR deleted file mode 100644 index 9aee30a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS deleted file mode 100644 index a7b344a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS deleted file mode 100644 index 0c28d16..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT deleted file mode 100644 index 51b7aae..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU deleted file mode 100644 index a04bf4f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV deleted file mode 100644 index 6591ce0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 deleted file mode 100644 index bbd774e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 deleted file mode 100644 index 6339774..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 deleted file mode 100644 index 176b67f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 deleted file mode 100644 index bb61bb1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 deleted file mode 100644 index 3274f6f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 deleted file mode 100644 index 970ac07..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 deleted file mode 100644 index 9332050..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 deleted file mode 100644 index 647d290..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 deleted file mode 100644 index c750605..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 deleted file mode 100644 index ca40424..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA deleted file mode 100644 index 8b3c16b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA deleted file mode 100644 index 15fa85d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC deleted file mode 100644 index b0ce020..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE deleted file mode 100644 index cdfecc3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE deleted file mode 100644 index b3680a3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG deleted file mode 100644 index 94d0c7a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH deleted file mode 100644 index 6c153ec..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH deleted file mode 100644 index e1c63db..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI deleted file mode 100644 index ab0b805..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ deleted file mode 100644 index d4c35ea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN deleted file mode 100644 index b22ea13..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO deleted file mode 100644 index f2ba87c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO deleted file mode 100644 index 96bf919..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP deleted file mode 100644 index 34f9f70..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ deleted file mode 100644 index 2fbac45..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW deleted file mode 100644 index d4059b6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX deleted file mode 100644 index f1c913d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY deleted file mode 100644 index f10b5be..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 deleted file mode 100644 index f975567..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 deleted file mode 100644 index 7b948a2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 deleted file mode 100644 index 946160e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 deleted file mode 100644 index ff02904..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 deleted file mode 100644 index 69767c0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 deleted file mode 100644 index d4f0220..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 deleted file mode 100644 index 43ddfb2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 deleted file mode 100644 index efdd5fc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 deleted file mode 100644 index 449a3cd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 deleted file mode 100644 index 2aa41bf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 deleted file mode 100644 index 5868009..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 deleted file mode 100644 index 785257d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 deleted file mode 100644 index 14c62fd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA deleted file mode 100644 index 6f82d01..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB deleted file mode 100644 index 25903cd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC deleted file mode 100644 index df37c8f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF deleted file mode 100644 index f9e7967..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG deleted file mode 100644 index e3dc037..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH deleted file mode 100644 index c0e4de4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH deleted file mode 100644 index 59ea876..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH deleted file mode 100644 index 11585f9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ deleted file mode 100644 index 1d2d2ee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ deleted file mode 100644 index faef055..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN deleted file mode 100644 index be64bc4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN deleted file mode 100644 index fe4d932..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO deleted file mode 100644 index 3853c6d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP deleted file mode 100644 index e072794..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ deleted file mode 100644 index f642c21..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ deleted file mode 100644 index 9d4e48c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS deleted file mode 100644 index 0615a59..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS deleted file mode 100644 index e115798..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS deleted file mode 100644 index 54e9907..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT deleted file mode 100644 index 532347c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU deleted file mode 100644 index 8b2faa0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX deleted file mode 100644 index 065e1c3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ deleted file mode 100644 index 19f655e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ deleted file mode 100644 index 54da647..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 deleted file mode 100644 index f250f70..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 deleted file mode 100644 index 77ae94d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 deleted file mode 100644 index 8611299..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 deleted file mode 100644 index 1a4f4a7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 deleted file mode 100644 index f97f215..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 deleted file mode 100644 index 27adc6b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA deleted file mode 100644 index 58dcc1f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB deleted file mode 100644 index 31912fa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND deleted file mode 100644 index fe53ac0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND deleted file mode 100644 index 283bf71..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE deleted file mode 100644 index 2801b0f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF deleted file mode 100644 index b08dbdd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF deleted file mode 100644 index 9dccab4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF deleted file mode 100644 index 320deee..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG deleted file mode 100644 index 5255215..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH deleted file mode 100644 index 3a0d542..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH deleted file mode 100644 index e727fa3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI deleted file mode 100644 index 2307d22..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ deleted file mode 100644 index 110ddf5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ deleted file mode 100644 index 687ccd8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ deleted file mode 100644 index 8c729c2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ deleted file mode 100644 index 183bf05..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK deleted file mode 100644 index 3d72fdd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK deleted file mode 100644 index 79330de..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL deleted file mode 100644 index 509c707..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM deleted file mode 100644 index a84d8d7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO deleted file mode 100644 index cf2324a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP deleted file mode 100644 index 887048b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR deleted file mode 100644 index d61e8fc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR deleted file mode 100644 index 92947dd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR deleted file mode 100644 index a317957..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW deleted file mode 100644 index f8ac640..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX deleted file mode 100644 index 745df8d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY deleted file mode 100644 index 9d9b667..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY deleted file mode 100644 index c2a9a37..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ deleted file mode 100644 index 814a3c5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 deleted file mode 100644 index a851033..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 deleted file mode 100644 index bbe353f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 deleted file mode 100644 index 16a7374..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 deleted file mode 100644 index 2ca1025..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 deleted file mode 100644 index 0261331..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 deleted file mode 100644 index 1238138..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 deleted file mode 100644 index 539edb0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 deleted file mode 100644 index af8a382..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 deleted file mode 100644 index af7fe2c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA deleted file mode 100644 index 45d0e6f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC deleted file mode 100644 index d033974..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC deleted file mode 100644 index 831c0f7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC deleted file mode 100644 index 1a36c22..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE deleted file mode 100644 index 49a5e86..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE deleted file mode 100644 index a55ade7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE deleted file mode 100644 index d2bf994..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE deleted file mode 100644 index 3d80826..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF deleted file mode 100644 index 6ff7cbe..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH deleted file mode 100644 index fe2cb47..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH deleted file mode 100644 index e69f781..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ deleted file mode 100644 index 1245aea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ deleted file mode 100644 index 311a96f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK deleted file mode 100644 index e000922..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM deleted file mode 100644 index e00f5d4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO deleted file mode 100644 index 35866a0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO deleted file mode 100644 index db0fdcb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP deleted file mode 100644 index 98e32a7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR deleted file mode 100644 index 7ab7b72..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR deleted file mode 100644 index e55d377..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT deleted file mode 100644 index 4d6c93a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU deleted file mode 100644 index 0b8ee9b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU deleted file mode 100644 index a555079..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW deleted file mode 100644 index a6574eb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX deleted file mode 100644 index 25204c4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY deleted file mode 100644 index b8d5c7e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ deleted file mode 100644 index 860b836..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 deleted file mode 100644 index 2d16f1a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 deleted file mode 100644 index 6a82d6a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 deleted file mode 100644 index 8645d06..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 deleted file mode 100644 index 5fd5375..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 deleted file mode 100644 index 1281744..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 deleted file mode 100644 index 2edef90..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB deleted file mode 100644 index 4ec958b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC deleted file mode 100644 index 88787c3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD deleted file mode 100644 index 7a56f1d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE deleted file mode 100644 index afd364e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG deleted file mode 100644 index 04c5590..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG deleted file mode 100644 index 6fce1f3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH deleted file mode 100644 index 0f0b4e7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH deleted file mode 100644 index 7231991..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM deleted file mode 100644 index b649fbf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN deleted file mode 100644 index 2c364de..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP deleted file mode 100644 index e4db422..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP deleted file mode 100644 index 1b7f00e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU deleted file mode 100644 index a759ac1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU deleted file mode 100644 index d7baba6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX deleted file mode 100644 index 9297890..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 deleted file mode 100644 index af217a0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 deleted file mode 100644 index 8c5a92b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 deleted file mode 100644 index ac5a387..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 deleted file mode 100644 index 513ef16..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 deleted file mode 100644 index bd5de72..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 deleted file mode 100644 index b12fb8a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 deleted file mode 100644 index c42ce5c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 deleted file mode 100644 index 742bd70..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 deleted file mode 100644 index bce863e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 deleted file mode 100644 index f89345b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 deleted file mode 100644 index 8d39233..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA deleted file mode 100644 index 7077d63..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC deleted file mode 100644 index 46fedd3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD deleted file mode 100644 index 930725e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE deleted file mode 100644 index 4ce52eb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH deleted file mode 100644 index 629a4e2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH deleted file mode 100644 index 3d8a18f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH deleted file mode 100644 index c1b7eaa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH deleted file mode 100644 index a24b632..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM deleted file mode 100644 index c8a68a7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO deleted file mode 100644 index 17a818b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO deleted file mode 100644 index 1619f41..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP deleted file mode 100644 index 82e3682..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ deleted file mode 100644 index 407e98d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR deleted file mode 100644 index 1c13152..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR deleted file mode 100644 index 2fa551f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR deleted file mode 100644 index c8d0d92..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW deleted file mode 100644 index 3bedd50..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW deleted file mode 100644 index f63d9f0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX deleted file mode 100644 index 0ccceb7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 deleted file mode 100644 index 8fb1d8b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 deleted file mode 100644 index bb8fef5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 deleted file mode 100644 index d3d6e0b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 deleted file mode 100644 index 6bd921c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 deleted file mode 100644 index bf8444f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 deleted file mode 100644 index cc35153..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 deleted file mode 100644 index 14d279a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 deleted file mode 100644 index 7e6da69..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA deleted file mode 100644 index f2b4835..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA deleted file mode 100644 index 083b7d6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD deleted file mode 100644 index b2a7e49..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD deleted file mode 100644 index ca7a120..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF deleted file mode 100644 index 39337eb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF deleted file mode 100644 index 1db2467..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH deleted file mode 100644 index 4a5f2a2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH deleted file mode 100644 index 7d27822..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH deleted file mode 100644 index d936087..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH deleted file mode 100644 index 9450f23..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI deleted file mode 100644 index 301cc2b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ deleted file mode 100644 index bb0a81a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN deleted file mode 100644 index e5fdea2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO deleted file mode 100644 index d1431d7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP deleted file mode 100644 index cefb4e6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ deleted file mode 100644 index c13baa9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ deleted file mode 100644 index 48acd71..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR deleted file mode 100644 index 0b49caf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR deleted file mode 100644 index 7c47e64..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV deleted file mode 100644 index 6f2a62a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV deleted file mode 100644 index a735400..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV deleted file mode 100644 index 5d51994..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY deleted file mode 100644 index fd18b99..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ deleted file mode 100644 index 20a9dfd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 deleted file mode 100644 index 01be1b4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 deleted file mode 100644 index 145e895..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 deleted file mode 100644 index b2b73b5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 deleted file mode 100644 index af52021..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 deleted file mode 100644 index 7c5ff63..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 deleted file mode 100644 index 324c630..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 deleted file mode 100644 index 9f7ce0a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 deleted file mode 100644 index bc7d2bc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA deleted file mode 100644 index 3630258..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC deleted file mode 100644 index 9da8058..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE deleted file mode 100644 index 94f0371..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG deleted file mode 100644 index 2ec9437..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG deleted file mode 100644 index b086849..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI deleted file mode 100644 index f74bb30..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI deleted file mode 100644 index a3c5891..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI deleted file mode 100644 index c0c6a03..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI deleted file mode 100644 index da580a1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ deleted file mode 100644 index e11ba63..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK deleted file mode 100644 index cbc68f6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL deleted file mode 100644 index 5d52267..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR deleted file mode 100644 index 7f96087..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV deleted file mode 100644 index 2254cd9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 deleted file mode 100644 index 9fa1e53..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 deleted file mode 100644 index a210c18..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 deleted file mode 100644 index f600049..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 deleted file mode 100644 index 3f784fd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 deleted file mode 100644 index 08804a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 deleted file mode 100644 index 32b3512..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 deleted file mode 100644 index 500364b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 deleted file mode 100644 index 1e2f36c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 deleted file mode 100644 index b0cfbd8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 deleted file mode 100644 index c773c00..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 deleted file mode 100644 index 4b159d0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 deleted file mode 100644 index a1bd6ba..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 deleted file mode 100644 index bbf274c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 deleted file mode 100644 index 43c9a93..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 deleted file mode 100644 index bcefb87..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 deleted file mode 100644 index 5aa7b8f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 deleted file mode 100644 index ae2d979..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 deleted file mode 100644 index c7c1146..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA deleted file mode 100644 index d4076b9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA deleted file mode 100644 index 1c5a675..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB deleted file mode 100644 index cbee880..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC deleted file mode 100644 index a28655a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC deleted file mode 100644 index 3918bed..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC deleted file mode 100644 index 0f6e627..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD deleted file mode 100644 index 6c5d4f7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG deleted file mode 100644 index f13728a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG deleted file mode 100644 index f62ce29..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI deleted file mode 100644 index 5d1b1dc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK deleted file mode 100644 index 29e1a21..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM deleted file mode 100644 index 98a7eea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP deleted file mode 100644 index c098247..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ deleted file mode 100644 index 498666e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ deleted file mode 100644 index b97090a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR deleted file mode 100644 index 625e5a1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS deleted file mode 100644 index 5a0e311..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT deleted file mode 100644 index 34ca26f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT deleted file mode 100644 index 6e1479e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU deleted file mode 100644 index 2187700..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV deleted file mode 100644 index afff976..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW deleted file mode 100644 index 5a2e0dd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY deleted file mode 100644 index 96edce7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 deleted file mode 100644 index c26d811..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 deleted file mode 100644 index 7e9d6e5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 deleted file mode 100644 index e14c025..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 deleted file mode 100644 index 471548d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 deleted file mode 100644 index add69a0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 deleted file mode 100644 index 67597a1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 deleted file mode 100644 index a65162c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 deleted file mode 100644 index 2401bb1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 deleted file mode 100644 index 4a43a82..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 deleted file mode 100644 index 7338a3a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 deleted file mode 100644 index 4cd3afd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 deleted file mode 100644 index ea751c4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA deleted file mode 100644 index 26a428a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA deleted file mode 100644 index 4be0987..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA deleted file mode 100644 index df05d54..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB deleted file mode 100644 index ff2f313..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC deleted file mode 100644 index 6e9ce82..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD deleted file mode 100644 index 42ad46c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD deleted file mode 100644 index 0456eb3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF deleted file mode 100644 index dd67602..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF deleted file mode 100644 index b683d45..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG deleted file mode 100644 index 49444e0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH deleted file mode 100644 index f5344ed..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK deleted file mode 100644 index f3cb140..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM deleted file mode 100644 index a9c6664..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM deleted file mode 100644 index 2348687..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN deleted file mode 100644 index 1c2c361..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN deleted file mode 100644 index 7b4238a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN deleted file mode 100644 index 6a37e84..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP deleted file mode 100644 index ae493f3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR deleted file mode 100644 index e0d0e9f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR deleted file mode 100644 index 81b09e0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS deleted file mode 100644 index 464813f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT deleted file mode 100644 index 24419e8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV deleted file mode 100644 index 28fb61c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV deleted file mode 100644 index b954e17..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW deleted file mode 100644 index 593acff..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX deleted file mode 100644 index fe906b3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 deleted file mode 100644 index 2af60df..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 deleted file mode 100644 index 754449c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 deleted file mode 100644 index 79cd522..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 deleted file mode 100644 index 602760e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 deleted file mode 100644 index 4b40daf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 deleted file mode 100644 index 070a6aa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA deleted file mode 100644 index 47ee1a9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB deleted file mode 100644 index 5d6320d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD deleted file mode 100644 index 0598add..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF deleted file mode 100644 index bda2f80..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH deleted file mode 100644 index a1ea006..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ deleted file mode 100644 index 3b015fa..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK deleted file mode 100644 index 8a46523..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN deleted file mode 100644 index b7aef16..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN deleted file mode 100644 index 302681a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO deleted file mode 100644 index cf5f422..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO deleted file mode 100644 index de03261..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO deleted file mode 100644 index 9445b63..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ deleted file mode 100644 index 801bd67..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR deleted file mode 100644 index 4d61cae..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU deleted file mode 100644 index bc5c92e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU deleted file mode 100644 index ffbc0d1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV deleted file mode 100644 index 31b9890..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW deleted file mode 100644 index 93e6b21..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 deleted file mode 100644 index 08cf58a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 deleted file mode 100644 index 4d16f48..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 deleted file mode 100644 index 61db7bd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 deleted file mode 100644 index 3dedfe2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 deleted file mode 100644 index e221004..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 deleted file mode 100644 index 1e2d9a8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 deleted file mode 100644 index 9b51892..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 deleted file mode 100644 index 44bf47b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 deleted file mode 100644 index bd23051..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA deleted file mode 100644 index b3815ea..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD deleted file mode 100644 index 3411a21..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE deleted file mode 100644 index 3dfeb86..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE deleted file mode 100644 index fdb1bf6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG deleted file mode 100644 index 9d1f5af..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG deleted file mode 100644 index c9295da..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI deleted file mode 100644 index a0d7f3c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI deleted file mode 100644 index a7cf809..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI deleted file mode 100644 index 0eba9a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK deleted file mode 100644 index ef6c4a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK deleted file mode 100644 index 1de5d0c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM deleted file mode 100644 index c64bd83..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO deleted file mode 100644 index b4303e5..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO deleted file mode 100644 index 8896cfe..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP deleted file mode 100644 index 7194a03..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR deleted file mode 100644 index f37bf98..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR deleted file mode 100644 index 9bb3941..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT deleted file mode 100644 index 188c2a2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU deleted file mode 100644 index 1fed6c6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV deleted file mode 100644 index 73c06c8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW deleted file mode 100644 index 8ce78e6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX deleted file mode 100644 index 6a3facd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ deleted file mode 100644 index 5a97458..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 deleted file mode 100644 index 9e9ff6e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 deleted file mode 100644 index 68e3081..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 deleted file mode 100644 index a058bc3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 deleted file mode 100644 index fb78df3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC deleted file mode 100644 index 81980ed..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF deleted file mode 100644 index cc8e14e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG deleted file mode 100644 index 2a20fb3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG deleted file mode 100644 index c4040c1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK deleted file mode 100644 index cc08a59..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM deleted file mode 100644 index eabeffc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM deleted file mode 100644 index bc09720..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO deleted file mode 100644 index 229e7ba..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO deleted file mode 100644 index d5e8abb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP deleted file mode 100644 index 16082d9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP deleted file mode 100644 index 6395fda..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ deleted file mode 100644 index 0ed717a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR deleted file mode 100644 index 2b10d00..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR deleted file mode 100644 index 902a1dd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU deleted file mode 100644 index c337502..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV deleted file mode 100644 index 2255a6c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX deleted file mode 100644 index 6ebac89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX deleted file mode 100644 index 28ca2a6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY deleted file mode 100644 index 54c8ded..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 deleted file mode 100644 index 6f0c817..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 deleted file mode 100644 index bf3245a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 deleted file mode 100644 index 0c9ffed..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 deleted file mode 100644 index a575d81..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 deleted file mode 100644 index ed2df11..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 deleted file mode 100644 index 006f166..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 deleted file mode 100644 index 4ecac1f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 deleted file mode 100644 index cdeb6de..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 deleted file mode 100644 index eeb91d7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 deleted file mode 100644 index 6c772a2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE deleted file mode 100644 index e993166..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG deleted file mode 100644 index 3f49555..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH deleted file mode 100644 index 5b1f9c9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ deleted file mode 100644 index 03db300..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR deleted file mode 100644 index 6bc333c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT deleted file mode 100644 index fda9bef..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT deleted file mode 100644 index 499eb63..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU deleted file mode 100644 index 549d575..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV deleted file mode 100644 index 02aca3b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV deleted file mode 100644 index e5b0e2a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV deleted file mode 100644 index 6848f18..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW deleted file mode 100644 index 49f79d7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW deleted file mode 100644 index 539681c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW deleted file mode 100644 index d146012..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW deleted file mode 100644 index 168f297..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX deleted file mode 100644 index 2cc39a9..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY deleted file mode 100644 index fbdd550..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY deleted file mode 100644 index fb9d08b..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY deleted file mode 100644 index b52db97..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 deleted file mode 100644 index 80ac77f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 deleted file mode 100644 index d786447..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 deleted file mode 100644 index ef379ce..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 deleted file mode 100644 index 90bc7b1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 deleted file mode 100644 index b9279be..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 deleted file mode 100644 index 9cc9ca6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 deleted file mode 100644 index 7b6e0be..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 deleted file mode 100644 index 74136d4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 deleted file mode 100644 index c9b32ca..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 deleted file mode 100644 index b43d449..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB deleted file mode 100644 index 02c2631..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB deleted file mode 100644 index 8640e31..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC deleted file mode 100644 index 6e097c1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC deleted file mode 100644 index f5d62e3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC deleted file mode 100644 index 420075c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD deleted file mode 100644 index fb252b1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE deleted file mode 100644 index fee6ff6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE deleted file mode 100644 index 2f30076..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG deleted file mode 100644 index f459cdc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG deleted file mode 100644 index da29210..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG deleted file mode 100644 index 24dd7fb..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH deleted file mode 100644 index f8ad16f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ deleted file mode 100644 index c2f6c6a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO deleted file mode 100644 index 617bcdf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP deleted file mode 100644 index dd58815..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR deleted file mode 100644 index f04f995..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR deleted file mode 100644 index 6a51c98..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR deleted file mode 100644 index 58c848f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS deleted file mode 100644 index 0629187..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW deleted file mode 100644 index 65eb0b4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX deleted file mode 100644 index cd88664..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX deleted file mode 100644 index f799da1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY deleted file mode 100644 index 34817bd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ deleted file mode 100644 index 035a980..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ deleted file mode 100644 index 44a6435..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-1KHVRA4O6DEPU b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-1KHVRA4O6DEPU deleted file mode 100644 index 040efb6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-1KHVRA4O6DEPU and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-25NOBHH72RGV b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-25NOBHH72RGV deleted file mode 100644 index fdce358..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-25NOBHH72RGV and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-39NAS1NE7T2JC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-39NAS1NE7T2JC deleted file mode 100644 index e726bdd..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-39NAS1NE7T2JC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-HOF7YLYQU3J0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-HOF7YLYQU3J0 deleted file mode 100644 index 1deaa9c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-HOF7YLYQU3J0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-XJD3X46KBBM6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-XJD3X46KBBM6 deleted file mode 100644 index ea78dad..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-XJD3X46KBBM6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-1XC5E59O7IGVO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-1XC5E59O7IGVO deleted file mode 100644 index bf798d4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-1XC5E59O7IGVO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-145PP99KQRRFA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-145PP99KQRRFA deleted file mode 100644 index f65be96..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-145PP99KQRRFA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-2FGL6OLMXPRQJ b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-2FGL6OLMXPRQJ deleted file mode 100644 index 54c1873..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-2FGL6OLMXPRQJ and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/LocalLibraryStore.swift.o-1F4FGQQEPAWL0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/LocalLibraryStore.swift.o-1F4FGQQEPAWL0 deleted file mode 100644 index e8f89e0..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/LocalLibraryStore.swift.o-1F4FGQQEPAWL0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-A297ZQO6HCLW b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-A297ZQO6HCLW deleted file mode 100644 index 5f020cf..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-A297ZQO6HCLW and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1KTT5GLPHI1P2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1KTT5GLPHI1P2 deleted file mode 100644 index 804d09f..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1KTT5GLPHI1P2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-1DY2I0YY42QEK b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-1DY2I0YY42QEK deleted file mode 100644 index d94c9a4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-1DY2I0YY42QEK and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3JCF22UAGYPWI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3JCF22UAGYPWI deleted file mode 100644 index b0034e8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-3JCF22UAGYPWI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-2WWB6SOKZTJSN b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-2WWB6SOKZTJSN deleted file mode 100644 index 593ad6c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-2WWB6SOKZTJSN and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-T3CZMJ7GDNF5 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-T3CZMJ7GDNF5 deleted file mode 100644 index 6b55d89..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-T3CZMJ7GDNF5 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-342XW5C0X4JED b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-342XW5C0X4JED deleted file mode 100644 index 70a8dfc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-342XW5C0X4JED and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-3OK8J1CXI2H98 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-3OK8J1CXI2H98 deleted file mode 100644 index bf088f2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-3OK8J1CXI2H98 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-24DPWKXJDYNG6 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-24DPWKXJDYNG6 deleted file mode 100644 index 7d33db2..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-24DPWKXJDYNG6 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-3JD6LHH13K18Z b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-3JD6LHH13K18Z deleted file mode 100644 index c27e7d1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-3JD6LHH13K18Z and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-2LP563SKJTG0F b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-2LP563SKJTG0F deleted file mode 100644 index 0242449..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-2LP563SKJTG0F and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-1446MJM3OGSZY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-1446MJM3OGSZY deleted file mode 100644 index 62cbe7a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-1446MJM3OGSZY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2KUE68JU6QO30 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2KUE68JU6QO30 deleted file mode 100644 index 127e03d..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2KUE68JU6QO30 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-15I650TZSJFHR b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-15I650TZSJFHR deleted file mode 100644 index 6e269cc..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-15I650TZSJFHR and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-119M8N4NKIJ2C b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-119M8N4NKIJ2C deleted file mode 100644 index 8b29122..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-119M8N4NKIJ2C and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-2WA8WW2AX2BAY b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-2WA8WW2AX2BAY deleted file mode 100644 index c5fd91c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-2WA8WW2AX2BAY and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-11O3WVR1740A1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-11O3WVR1740A1 deleted file mode 100644 index caebb2a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-11O3WVR1740A1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 deleted file mode 100644 index 3f4f252..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM deleted file mode 100644 index 541300a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 deleted file mode 100644 index 96b45b3..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 deleted file mode 100644 index c5784f4..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G deleted file mode 100644 index a21b6d7..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA deleted file mode 100644 index 753c347..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC deleted file mode 100644 index 29c4a21..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 deleted file mode 100644 index 90ccb02..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 deleted file mode 100644 index ed701c6..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 deleted file mode 100644 index 8616986..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND deleted file mode 100644 index 52c9621..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V deleted file mode 100644 index 858a749..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC deleted file mode 100644 index 2f1cdf8..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 deleted file mode 100644 index d950846..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF deleted file mode 100644 index b091f8a..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-1YVBPJZVN3193 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-1YVBPJZVN3193 deleted file mode 100644 index 75856e1..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-1YVBPJZVN3193 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-3DEVICEL11KJG b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-3DEVICEL11KJG deleted file mode 100644 index 46d0396..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-3DEVICEL11KJG and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-2OBNMHZC473KD b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-2OBNMHZC473KD deleted file mode 100644 index 4c7241c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-2OBNMHZC473KD and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-1X3XZ402BBBHO b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-1X3XZ402BBBHO deleted file mode 100644 index 78a7774..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-1X3XZ402BBBHO and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-1KGHX3CM7934V b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-1KGHX3CM7934V deleted file mode 100644 index fbfcb6e..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-1KGHX3CM7934V and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-1OYUIXD1HY6EI b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-1OYUIXD1HY6EI deleted file mode 100644 index ded8b0c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-1OYUIXD1HY6EI and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-2RTLC3BE0O75U b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-2RTLC3BE0O75U deleted file mode 100644 index 15b3942..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-2RTLC3BE0O75U and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-2UKXHFE1D1MR0 b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-2UKXHFE1D1MR0 deleted file mode 100644 index a5d3c14..0000000 Binary files a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-2UKXHFE1D1MR0 and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/plugin-tools-description.json b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/plugin-tools-description.json deleted file mode 100644 index 335c755..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/plugin-tools-description.json +++ /dev/null @@ -1,395 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - }, - "C.VelodyPersistence-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyPersistence", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyPersistence" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyPersistence", - "-package-name", - "velodypersistence", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ], - "VelodyPersistence" : [ - "VelodyDomain" - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt b/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt deleted file mode 100644 index caf9e2b..0000000 --- a/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt +++ /dev/null @@ -1,2 +0,0 @@ -Apple Swift version 6.3.2 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -Target: arm64-apple-macosx26.0 diff --git a/packages/apple/VelodyPersistence/.build/build.db b/packages/apple/VelodyPersistence/.build/build.db deleted file mode 100644 index a10217c..0000000 Binary files a/packages/apple/VelodyPersistence/.build/build.db and /dev/null differ diff --git a/packages/apple/VelodyPersistence/.build/debug b/packages/apple/VelodyPersistence/.build/debug deleted file mode 120000 index 9733fca..0000000 --- a/packages/apple/VelodyPersistence/.build/debug +++ /dev/null @@ -1 +0,0 @@ -arm64-apple-macosx/debug \ No newline at end of file diff --git a/packages/apple/VelodyPersistence/.build/debug.yaml b/packages/apple/VelodyPersistence/.build/debug.yaml deleted file mode 100644 index 0cef71c..0000000 --- a/packages/apple/VelodyPersistence/.build/debug.yaml +++ /dev/null @@ -1,66 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "VelodyPersistence-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "C.VelodyPersistence-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - description: "Compiling Swift Module 'VelodyPersistence' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyPersistence","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodypersistence"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyPersistence/.build/plugin-tools.yaml b/packages/apple/VelodyPersistence/.build/plugin-tools.yaml deleted file mode 100644 index 0cef71c..0000000 --- a/packages/apple/VelodyPersistence/.build/plugin-tools.yaml +++ /dev/null @@ -1,66 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "VelodyPersistence-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "C.VelodyPersistence-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - description: "Compiling Swift Module 'VelodyPersistence' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyPersistence","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodypersistence"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyPersistence/.build/workspace-state.json b/packages/apple/VelodyPersistence/.build/workspace-state.json deleted file mode 100644 index 68d11ce..0000000 --- a/packages/apple/VelodyPersistence/.build/workspace-state.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "object" : { - "artifacts" : [ - - ], - "dependencies" : [ - { - "basedOn" : null, - "packageRef" : { - "identity" : "velodydomain", - "kind" : "fileSystem", - "location" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain", - "name" : "VelodyDomain" - }, - "state" : { - "name" : "fileSystem", - "path" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain" - }, - "subpath" : "velodydomain" - } - ], - "prebuilts" : [ - - ] - }, - "version" : 7 -} \ No newline at end of file diff --git a/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalMusicDiscovery.swift b/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalMusicDiscovery.swift new file mode 100644 index 0000000..fb72120 --- /dev/null +++ b/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalMusicDiscovery.swift @@ -0,0 +1,35 @@ +import Foundation +import VelodyDomain + +public struct LocalTrackMetadata: Hashable, Sendable { + public var title: String? + public var artist: String? + public var album: String? + public var durationSeconds: Double? + + public init( + title: String? = nil, + artist: String? = nil, + album: String? = nil, + durationSeconds: Double? = nil + ) { + self.title = title + self.artist = artist + self.album = album + self.durationSeconds = durationSeconds + } +} + +@MainActor +public protocol FolderAccessService: AnyObject { + func chooseFolder() -> URL? + func storedFolderURL() -> URL? +} + +public protocol MetadataReader { + func readMetadata(for fileURL: URL) async throws -> LocalTrackMetadata +} + +public protocol LocalMusicScanner { + func scanFolder(at folderURL: URL) async throws -> [LibraryTrack] +} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm deleted file mode 100644 index a5174f3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm deleted file mode 100644 index 868b2f1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm deleted file mode 100644 index 5c0bb5e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm deleted file mode 100644 index 485158d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm deleted file mode 100644 index 8e2417f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm deleted file mode 100644 index 24c1aff..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm deleted file mode 100644 index 82130f0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm deleted file mode 100644 index e0e3257..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm deleted file mode 100644 index 6c51d97..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm deleted file mode 100644 index e3671b4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm deleted file mode 100644 index 6ab9aa6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index e1eced1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm deleted file mode 100644 index 65100d5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm deleted file mode 100644 index c3ff568..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index dd7f850..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 11f1d45..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 35b633c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index b747280..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index a29c62c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index d44a1d6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 2a70864..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm deleted file mode 100644 index d028f7e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm deleted file mode 100644 index 77fdffc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm deleted file mode 100644 index d9b567b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 11946e4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm deleted file mode 100644 index 7fc434b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm deleted file mode 100644 index bf0fce6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm deleted file mode 100644 index b5438c6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm deleted file mode 100644 index 2da615f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm deleted file mode 100644 index 4b348e7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 0d03041..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 9b9c398..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm deleted file mode 100644 index ff1bc99..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule deleted file mode 100644 index 0d212ac..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 491412 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule deleted file mode 100644 index ec8012b..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule +++ /dev/null @@ -1,68 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405610000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 179160 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule deleted file mode 100644 index d8914c0..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule +++ /dev/null @@ -1,36 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 77504 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule deleted file mode 100644 index 95ebaec..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule +++ /dev/null @@ -1,64 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405605000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 210900 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule deleted file mode 100644 index 34a0aba..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule +++ /dev/null @@ -1,100 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405644000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 3785860 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1772776850000000000 - path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' - size: 162 - sdk_relative: true - - mtime: 1772253432000000000 - path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' - size: 81098 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true - - mtime: 1776564811000000000 - path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1155103 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule deleted file mode 100644 index c0fdeb6..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405613000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30136 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule deleted file mode 100644 index a2a4108..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule +++ /dev/null @@ -1,52 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405587000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 50836 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule deleted file mode 100644 index 748ae1f..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule +++ /dev/null @@ -1,44 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405589000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30876 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule deleted file mode 100644 index 1432dc9..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule +++ /dev/null @@ -1,12 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405569000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 15012500 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule deleted file mode 100644 index de1fb4a..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 18524 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559148000000000 - path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1411 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule deleted file mode 100644 index 3596a85..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 401660 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule deleted file mode 100644 index 83acb25..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405609000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 117716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule deleted file mode 100644 index fbe57da..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule deleted file mode 100644 index a57816b..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 748656 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule deleted file mode 100644 index 197735f..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405578000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 92188 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule deleted file mode 100644 index 698d567..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule +++ /dev/null @@ -1,24 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405579000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23256 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule deleted file mode 100644 index 824fb22..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule +++ /dev/null @@ -1,28 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405580000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 20564 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule deleted file mode 100644 index 8634693..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405576000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 84172 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache/modules.timestamp deleted file mode 100644 index e69de29..0000000 diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc deleted file mode 100644 index dd8a684..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule deleted file mode 100644 index 40239ba..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo deleted file mode 100644 index 87b0926..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.abi.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc deleted file mode 100644 index 8bd7d53..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule deleted file mode 100644 index 7bad56c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo deleted file mode 100644 index 08ea4c1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.abi.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc deleted file mode 100644 index e71dde9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule deleted file mode 100644 index 216fc03..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo deleted file mode 100644 index 5974ae7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.abi.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftdoc b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftdoc deleted file mode 100644 index c46687a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule deleted file mode 100644 index 07332f9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftsourceinfo b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftsourceinfo deleted file mode 100644 index 21fa353..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d deleted file mode 100644 index 68f0d3d..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o deleted file mode 100644 index 4366293..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps deleted file mode 100644 index fe5f6bd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d deleted file mode 100644 index 13dcebb..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/VelodyDomain.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h deleted file mode 100644 index fefd13b..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYDOMAIN_SWIFT_H -#define VELODYDOMAIN_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyDomain",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap deleted file mode 100644 index e1474c4..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyDomain { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h" -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json deleted file mode 100644 index 27e0739..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.dia" - } -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors deleted file mode 100644 index e2f9bc7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources deleted file mode 100644 index 7727965..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d deleted file mode 100644 index 166cf45..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o deleted file mode 100644 index dd72660..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps deleted file mode 100644 index daac3c7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.d deleted file mode 100644 index bd3d440..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyNetworking.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h deleted file mode 100644 index 24bcdd5..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYNETWORKING_SWIFT_H -#define VELODYNETWORKING_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyNetworking",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyNetworking",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/module.modulemap b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/module.modulemap deleted file mode 100644 index 0669ca9..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyNetworking { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h" -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json deleted file mode 100644 index b9eb9ea..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.dia" - } -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.priors b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.priors deleted file mode 100644 index 64f6c11..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources deleted file mode 100644 index 8fefcd2..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d deleted file mode 100644 index a72ca03..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o deleted file mode 100644 index 99709c6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps deleted file mode 100644 index 45f7976..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.d deleted file mode 100644 index 2cf4f2f..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/VelodyPersistence.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h deleted file mode 100644 index 2a11cb9..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYPERSISTENCE_SWIFT_H -#define VELODYPERSISTENCE_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyPersistence",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyPersistence",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/module.modulemap b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/module.modulemap deleted file mode 100644 index b846366..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyPersistence { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h" -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json deleted file mode 100644 index 41af846..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.dia" - } -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.priors b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.priors deleted file mode 100644 index 2adb6c9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources deleted file mode 100644 index a3b0434..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.d deleted file mode 100644 index a607470..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o deleted file mode 100644 index 535d5ed..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swiftdeps b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swiftdeps deleted file mode 100644 index b98b62f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/VelodySync.emit-module.d b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/VelodySync.emit-module.d deleted file mode 100644 index a2e3c38..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/VelodySync.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/VelodySync.emit-module.dia b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/VelodySync.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/VelodySync.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h deleted file mode 100644 index 98fc804..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYSYNC_SWIFT_H -#define VELODYSYNC_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodySync",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodySync",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/module.modulemap b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/module.modulemap deleted file mode 100644 index c38a5ae..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodySync { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h" -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/output-file-map.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/output-file-map.json deleted file mode 100644 index a108a27..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.dia" - } -} diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/primary.priors b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/primary.priors deleted file mode 100644 index 6779c53..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources deleted file mode 100644 index 8e27a9a..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/description.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/description.json deleted file mode 100644 index fe9f3e4..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/description.json +++ /dev/null @@ -1,749 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - }, - "C.VelodyNetworking-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyNetworking", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build", - "wholeModuleOptimization" : false - }, - "C.VelodyPersistence-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyPersistence", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build", - "wholeModuleOptimization" : false - }, - "C.VelodySync-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodySync", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodysync" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyNetworking" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyNetworking", - "-package-name", - "velodynetworking", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyPersistence" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyPersistence", - "-package-name", - "velodypersistence", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodySync" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodySync", - "-package-name", - "velodysync", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodysync", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ], - "VelodyNetworking" : [ - "VelodyDomain" - ], - "VelodyPersistence" : [ - "VelodyDomain" - ], - "VelodySync" : [ - "VelodyPersistence", - "VelodyNetworking", - "VelodyDomain" - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 deleted file mode 100644 index d8de0d0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 deleted file mode 100644 index a3a9228..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 deleted file mode 100644 index 332cecc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 deleted file mode 100644 index 8ab5d97..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 deleted file mode 100644 index 3f7f1f4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 deleted file mode 100644 index 4ba51ab..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A deleted file mode 100644 index 9dc6451..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B deleted file mode 100644 index de0d748..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C deleted file mode 100644 index 2d7bd3c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C deleted file mode 100644 index 1c187c1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D deleted file mode 100644 index f552bbf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F deleted file mode 100644 index 9784784..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G deleted file mode 100644 index 8c39ec2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I deleted file mode 100644 index 4131c00..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I deleted file mode 100644 index ba2a57d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K deleted file mode 100644 index 472d29d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L deleted file mode 100644 index 3865ab3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L deleted file mode 100644 index 7d87af8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M deleted file mode 100644 index c659b9c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P deleted file mode 100644 index 776035c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q deleted file mode 100644 index 2ccb007..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R deleted file mode 100644 index 0988fed..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S deleted file mode 100644 index 70eaab4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V deleted file mode 100644 index f142839..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W deleted file mode 100644 index 3fc3c57..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X deleted file mode 100644 index d92858e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X deleted file mode 100644 index 65fbaee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z deleted file mode 100644 index b015911..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 deleted file mode 100644 index fc81374..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 deleted file mode 100644 index 48d8ee3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 deleted file mode 100644 index 5674743..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 deleted file mode 100644 index 6e84472..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 deleted file mode 100644 index e3acd29..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 deleted file mode 100644 index f793c0c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 deleted file mode 100644 index 87575cf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 deleted file mode 100644 index 7a74614..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 deleted file mode 100644 index 2fb6304..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 deleted file mode 100644 index 66750c4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 deleted file mode 100644 index e76046c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 deleted file mode 100644 index f605b23..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 deleted file mode 100644 index beb3eaa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 deleted file mode 100644 index c8fb1a1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 deleted file mode 100644 index 92d491d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 deleted file mode 100644 index 9cedb84..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 deleted file mode 100644 index 9ef1b4f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 deleted file mode 100644 index 2fa39fd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B deleted file mode 100644 index d63482d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B deleted file mode 100644 index f913215..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C deleted file mode 100644 index 69ceaf3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F deleted file mode 100644 index c0704f0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I deleted file mode 100644 index ecde0c5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I deleted file mode 100644 index 807c71f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I deleted file mode 100644 index 74b5449..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I deleted file mode 100644 index b241d51..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I deleted file mode 100644 index ae9b5e5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J deleted file mode 100644 index 315f757..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K deleted file mode 100644 index 25f5b8d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N deleted file mode 100644 index 2832534..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N deleted file mode 100644 index db107cb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q deleted file mode 100644 index e2b8122..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R deleted file mode 100644 index 4315342..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W deleted file mode 100644 index bf7e3e8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X deleted file mode 100644 index 9f59f70..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z deleted file mode 100644 index ddbd47b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 deleted file mode 100644 index 9a6aac6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 deleted file mode 100644 index e3587a6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 deleted file mode 100644 index 15a8f88..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 deleted file mode 100644 index cad8dca..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 deleted file mode 100644 index 4fef39b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 deleted file mode 100644 index b05a151..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A deleted file mode 100644 index e8f7f6f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C deleted file mode 100644 index 09d6f89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D deleted file mode 100644 index 41de67b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E deleted file mode 100644 index 8f5c69b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E deleted file mode 100644 index 9f42e38..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F deleted file mode 100644 index cb48ea9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H deleted file mode 100644 index 1b90c98..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I deleted file mode 100644 index a9d8c35..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K deleted file mode 100644 index 154c8c4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O deleted file mode 100644 index 5c4dcf1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q deleted file mode 100644 index 754ef57..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R deleted file mode 100644 index e9d8da2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S deleted file mode 100644 index 4f8a13d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S deleted file mode 100644 index 727e0ff..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U deleted file mode 100644 index 44436b4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U deleted file mode 100644 index ef7fa0f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U deleted file mode 100644 index ca6edfc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U deleted file mode 100644 index 1a9b16f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V deleted file mode 100644 index 52d7cd9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z deleted file mode 100644 index c9b3910..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z deleted file mode 100644 index 5a10275..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 deleted file mode 100644 index fc00457..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 deleted file mode 100644 index 3db7277..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 deleted file mode 100644 index f93985c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 deleted file mode 100644 index e86e3e7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 deleted file mode 100644 index 3e9bd95..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 deleted file mode 100644 index 27edb3c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 deleted file mode 100644 index ba671da..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 deleted file mode 100644 index 59ddecf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 deleted file mode 100644 index f7dc6fb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C deleted file mode 100644 index ec48d2a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D deleted file mode 100644 index 2e22bd9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E deleted file mode 100644 index 7fe6d84..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F deleted file mode 100644 index 6cc497e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F deleted file mode 100644 index fb2179f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H deleted file mode 100644 index ffe050b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J deleted file mode 100644 index 727eae4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J deleted file mode 100644 index bd5ba39..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K deleted file mode 100644 index 19d4de3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K deleted file mode 100644 index d888ae2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K deleted file mode 100644 index f002fd2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L deleted file mode 100644 index aec02a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L deleted file mode 100644 index 9db0c86..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M deleted file mode 100644 index 5b387b6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O deleted file mode 100644 index bb15053..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q deleted file mode 100644 index 14232cb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q deleted file mode 100644 index c35d2db..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T deleted file mode 100644 index cdfa612..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U deleted file mode 100644 index 572e574..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U deleted file mode 100644 index 9cc36aa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V deleted file mode 100644 index dc32420..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V deleted file mode 100644 index e02c5c9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W deleted file mode 100644 index 7a56612..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X deleted file mode 100644 index 50435d1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X deleted file mode 100644 index 2ad8efe..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y deleted file mode 100644 index 3175c2b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z deleted file mode 100644 index c32a976..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 deleted file mode 100644 index 8746a3f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 deleted file mode 100644 index e302fee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 deleted file mode 100644 index a019c73..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 deleted file mode 100644 index ee3a337..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 deleted file mode 100644 index c970b9f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 deleted file mode 100644 index 621ff54..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 deleted file mode 100644 index bf13889..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C deleted file mode 100644 index 69bc594..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C deleted file mode 100644 index 37376cf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D deleted file mode 100644 index 959ae33..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E deleted file mode 100644 index 3c7cf0a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F deleted file mode 100644 index cfcce56..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I deleted file mode 100644 index e9afed6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K deleted file mode 100644 index 61024bb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O deleted file mode 100644 index e905484..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P deleted file mode 100644 index 84212f2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q deleted file mode 100644 index 47386d7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q deleted file mode 100644 index 711b99d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S deleted file mode 100644 index 82229a8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S deleted file mode 100644 index 13ce346..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V deleted file mode 100644 index 1b0f1c3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V deleted file mode 100644 index 92afd17..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W deleted file mode 100644 index bdf9135..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X deleted file mode 100644 index e79f069..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X deleted file mode 100644 index 889c4a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 deleted file mode 100644 index f587a0c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 deleted file mode 100644 index 9846567..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 deleted file mode 100644 index 62f1933..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 deleted file mode 100644 index f783edd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 deleted file mode 100644 index aacb5cb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 deleted file mode 100644 index 536822a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A deleted file mode 100644 index 1f3281a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B deleted file mode 100644 index e64ebec..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B deleted file mode 100644 index 9553b1d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C deleted file mode 100644 index 92f14d1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C deleted file mode 100644 index a27dd7f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D deleted file mode 100644 index d20239b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G deleted file mode 100644 index 44a63bd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H deleted file mode 100644 index 5106054..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J deleted file mode 100644 index 4ae78ee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K deleted file mode 100644 index 8626382..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N deleted file mode 100644 index d77c105..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O deleted file mode 100644 index 70c93b0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O deleted file mode 100644 index a4a2f86..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P deleted file mode 100644 index 712e3f1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q deleted file mode 100644 index 35310d5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R deleted file mode 100644 index a24a655..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R deleted file mode 100644 index 029a717..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S deleted file mode 100644 index 4992e48..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T deleted file mode 100644 index 82f2da3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U deleted file mode 100644 index d405781..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W deleted file mode 100644 index 8cb65e8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y deleted file mode 100644 index c0fc055..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y deleted file mode 100644 index 89a2019..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 deleted file mode 100644 index 9b669ff..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 deleted file mode 100644 index affc184..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 deleted file mode 100644 index baeeb13..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 deleted file mode 100644 index e4ddb61..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 deleted file mode 100644 index 7712a33..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 deleted file mode 100644 index fded31d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 deleted file mode 100644 index 66a4bd5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 deleted file mode 100644 index c98dd27..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A deleted file mode 100644 index 501f418..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C deleted file mode 100644 index e61e005..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E deleted file mode 100644 index 9c05cfb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E deleted file mode 100644 index 783e2eb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F deleted file mode 100644 index d91a944..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G deleted file mode 100644 index 13df552..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J deleted file mode 100644 index 1a7bef4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K deleted file mode 100644 index b98969c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M deleted file mode 100644 index 785c16d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N deleted file mode 100644 index 9b7055a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O deleted file mode 100644 index 27789e8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q deleted file mode 100644 index a049a95..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q deleted file mode 100644 index 18346d9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R deleted file mode 100644 index 862efef..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V deleted file mode 100644 index 28ee5d0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W deleted file mode 100644 index 8f4ad95..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X deleted file mode 100644 index 9158251..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X deleted file mode 100644 index 0e845c5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X deleted file mode 100644 index 9265838..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z deleted file mode 100644 index a24ceaf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 deleted file mode 100644 index 0a9bd9a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 deleted file mode 100644 index 31d87a2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 deleted file mode 100644 index 50c4999..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 deleted file mode 100644 index 6832da8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 deleted file mode 100644 index c45b3ef..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 deleted file mode 100644 index e2b8e02..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 deleted file mode 100644 index 6a8ee99..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 deleted file mode 100644 index 7c81948..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 deleted file mode 100644 index 05db54f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A deleted file mode 100644 index 7db2a09..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B deleted file mode 100644 index 3f40130..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E deleted file mode 100644 index b0e5156..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E deleted file mode 100644 index 5e048c9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I deleted file mode 100644 index 449759a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J deleted file mode 100644 index 0d9a398..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M deleted file mode 100644 index 4f8cb00..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N deleted file mode 100644 index 876f7b0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N deleted file mode 100644 index 329d02e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N deleted file mode 100644 index 8ee734e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N deleted file mode 100644 index bbc3cd5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O deleted file mode 100644 index 52dbb67..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P deleted file mode 100644 index 573c4b3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P deleted file mode 100644 index 80b8762..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P deleted file mode 100644 index 365fcd7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q deleted file mode 100644 index 3bb906e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q deleted file mode 100644 index 4ba95d3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T deleted file mode 100644 index 9979885..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X deleted file mode 100644 index 1cacce4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 deleted file mode 100644 index 87c0d82..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 deleted file mode 100644 index c8d1f6e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 deleted file mode 100644 index 86079b7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 deleted file mode 100644 index 13e7a8d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 deleted file mode 100644 index b6ce923..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 deleted file mode 100644 index eb679f2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 deleted file mode 100644 index 210f96b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 deleted file mode 100644 index 92877c9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 deleted file mode 100644 index d572318..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 deleted file mode 100644 index 8bad9b8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 deleted file mode 100644 index 5916c8b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 deleted file mode 100644 index 5d85a0e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 deleted file mode 100644 index 416befd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A deleted file mode 100644 index c94ad0f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C deleted file mode 100644 index d107423..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C deleted file mode 100644 index 401c3f6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E deleted file mode 100644 index 895d6e5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E deleted file mode 100644 index c5e43eb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E deleted file mode 100644 index b038767..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F deleted file mode 100644 index 35b4812..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H deleted file mode 100644 index 8484583..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I deleted file mode 100644 index c7be029..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N deleted file mode 100644 index f7f26c3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q deleted file mode 100644 index ebc4f3b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R deleted file mode 100644 index 5fcfa30..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R deleted file mode 100644 index 44803c8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S deleted file mode 100644 index 07dcd49..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S deleted file mode 100644 index 2bf1169..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S deleted file mode 100644 index c6876b2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S deleted file mode 100644 index e4b1b5e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V deleted file mode 100644 index 0c328f0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W deleted file mode 100644 index 54ebf16..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y deleted file mode 100644 index f2bc86d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 deleted file mode 100644 index 262ba18..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 deleted file mode 100644 index fad8d28..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 deleted file mode 100644 index 4ece05c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 deleted file mode 100644 index 6749e37..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 deleted file mode 100644 index 5861624..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 deleted file mode 100644 index 70fa602..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 deleted file mode 100644 index b4dbd3f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 deleted file mode 100644 index 9fe3fa1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 deleted file mode 100644 index 380db15..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 deleted file mode 100644 index f9b4d06..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A deleted file mode 100644 index 5047eb6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A deleted file mode 100644 index 22b3249..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E deleted file mode 100644 index 1eed699..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E deleted file mode 100644 index f3f1059..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E deleted file mode 100644 index 8cf3264..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E deleted file mode 100644 index 86ea927..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E deleted file mode 100644 index ad13c05..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G deleted file mode 100644 index 576be06..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H deleted file mode 100644 index c209f8f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H deleted file mode 100644 index f8e5d53..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I deleted file mode 100644 index 26ad779..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I deleted file mode 100644 index 0a6ee79..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J deleted file mode 100644 index 428d376..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K deleted file mode 100644 index dbc2c54..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L deleted file mode 100644 index 3e070be..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N deleted file mode 100644 index d66e284..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N deleted file mode 100644 index 54b874c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O deleted file mode 100644 index c838be9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R deleted file mode 100644 index f361f1b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R deleted file mode 100644 index 389e65a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S deleted file mode 100644 index 2658a1a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y deleted file mode 100644 index 82ea224..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z deleted file mode 100644 index 60bc4a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z deleted file mode 100644 index 6091df7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z deleted file mode 100644 index 277e767..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 deleted file mode 100644 index 9bfdcee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 deleted file mode 100644 index 7d9bcb4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 deleted file mode 100644 index cb0241c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 deleted file mode 100644 index e25aea0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 deleted file mode 100644 index ddf97ef..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 deleted file mode 100644 index 746b114..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 deleted file mode 100644 index e9ee484..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 deleted file mode 100644 index a0dc8aa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB deleted file mode 100644 index f6b2eb6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD deleted file mode 100644 index 06e7645..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF deleted file mode 100644 index 5a519ac..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG deleted file mode 100644 index a823a70..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG deleted file mode 100644 index 14543cf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG deleted file mode 100644 index 717c3b1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ deleted file mode 100644 index 2e2e836..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ deleted file mode 100644 index c76c0a2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL deleted file mode 100644 index 343d386..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM deleted file mode 100644 index 78f5d23..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM deleted file mode 100644 index dc78a0a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM deleted file mode 100644 index 84bc5cd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO deleted file mode 100644 index a4228c1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP deleted file mode 100644 index 2c2a455..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ deleted file mode 100644 index 5393ad2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ deleted file mode 100644 index ab82173..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ deleted file mode 100644 index 4d2ac38..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT deleted file mode 100644 index 838c4be..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT deleted file mode 100644 index 01a0389..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT deleted file mode 100644 index d250f5b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT deleted file mode 100644 index 079634e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU deleted file mode 100644 index 3072fcc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU deleted file mode 100644 index f6e6108..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW deleted file mode 100644 index 3562423..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW deleted file mode 100644 index d66edef..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX deleted file mode 100644 index 50dd6d3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX deleted file mode 100644 index ee7d1cc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY deleted file mode 100644 index fa91362..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ deleted file mode 100644 index ae2fbfe..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ deleted file mode 100644 index 529c005..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 deleted file mode 100644 index b0fed79..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 deleted file mode 100644 index c08b2f5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 deleted file mode 100644 index 17d43a1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 deleted file mode 100644 index 9803275..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 deleted file mode 100644 index 7f5924b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 deleted file mode 100644 index 18b1c54..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA deleted file mode 100644 index 276b65c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA deleted file mode 100644 index de2efa3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB deleted file mode 100644 index 07f3f83..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB deleted file mode 100644 index 09633c1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC deleted file mode 100644 index c96ce93..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD deleted file mode 100644 index 316809e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD deleted file mode 100644 index 5a9d7e1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD deleted file mode 100644 index 02de3fa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE deleted file mode 100644 index 8fb64f8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG deleted file mode 100644 index 754bbdc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH deleted file mode 100644 index 1aa2aa5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH deleted file mode 100644 index 46c4a43..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ deleted file mode 100644 index bb27f4b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ deleted file mode 100644 index f9bab7e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK deleted file mode 100644 index c0db6bf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL deleted file mode 100644 index 9ef7f7c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL deleted file mode 100644 index 9b946c5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP deleted file mode 100644 index 50f0a18..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ deleted file mode 100644 index 8151f91..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ deleted file mode 100644 index 074a126..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR deleted file mode 100644 index 462e4ba..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS deleted file mode 100644 index 1f05727..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT deleted file mode 100644 index 4c7c78b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT deleted file mode 100644 index 894d506..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV deleted file mode 100644 index d23b640..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX deleted file mode 100644 index 9adbb60..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY deleted file mode 100644 index 467ff86..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY deleted file mode 100644 index e889031..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY deleted file mode 100644 index e9baa43..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 deleted file mode 100644 index f0ae61d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 deleted file mode 100644 index 7c9d232..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 deleted file mode 100644 index ffa1f52..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 deleted file mode 100644 index e8551d6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 deleted file mode 100644 index 5e21b19..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 deleted file mode 100644 index 4f21474..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 deleted file mode 100644 index 06eee31..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 deleted file mode 100644 index 9f6eef0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 deleted file mode 100644 index 2c2afe3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB deleted file mode 100644 index f4aa8bb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB deleted file mode 100644 index fabdbfd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC deleted file mode 100644 index ba56bee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD deleted file mode 100644 index 5a67bda..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF deleted file mode 100644 index 7991a14..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI deleted file mode 100644 index f3df3a0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI deleted file mode 100644 index 2a0f007..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK deleted file mode 100644 index 08bfafe..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL deleted file mode 100644 index 6015d1a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN deleted file mode 100644 index 0ed72f0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN deleted file mode 100644 index 7d378d8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP deleted file mode 100644 index 96aafdd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP deleted file mode 100644 index 11ca7b2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ deleted file mode 100644 index ef1aaa4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR deleted file mode 100644 index c5bbb59..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR deleted file mode 100644 index fda3d92..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR deleted file mode 100644 index e202544..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT deleted file mode 100644 index 374489a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT deleted file mode 100644 index a0ce498..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT deleted file mode 100644 index 47a0e5a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CU/PlaceholderSyncCoordinator.swift-3MZ6BWGNGW0CU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CU/PlaceholderSyncCoordinator.swift-3MZ6BWGNGW0CU deleted file mode 100644 index b9e983d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CU/PlaceholderSyncCoordinator.swift-3MZ6BWGNGW0CU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV deleted file mode 100644 index 500a147..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW deleted file mode 100644 index 1dc59a0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW deleted file mode 100644 index 1538f7b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX deleted file mode 100644 index ce3fbfb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX deleted file mode 100644 index 966c6b0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY deleted file mode 100644 index cf36aae..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ deleted file mode 100644 index abf6f84..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 deleted file mode 100644 index ae76537..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 deleted file mode 100644 index 1067b53..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 deleted file mode 100644 index c3239c1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 deleted file mode 100644 index 17871d5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 deleted file mode 100644 index 984656c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 deleted file mode 100644 index 06b0431..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB deleted file mode 100644 index a3fae8d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC deleted file mode 100644 index daa2ba6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD deleted file mode 100644 index 559341b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE deleted file mode 100644 index ce97f80..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF deleted file mode 100644 index 7955fa0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF deleted file mode 100644 index ec2aa3f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG deleted file mode 100644 index f2428d9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG deleted file mode 100644 index 026c3fb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG deleted file mode 100644 index 8793a3b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG deleted file mode 100644 index bd2c21b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH deleted file mode 100644 index 1311245..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI deleted file mode 100644 index ea5e317..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ deleted file mode 100644 index 7043717..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ deleted file mode 100644 index 3c16be4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL deleted file mode 100644 index 7e5a047..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL deleted file mode 100644 index 210cec5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/arm64e-apple-macos.swiftinterface-ANGR2ZBDPKDL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM deleted file mode 100644 index 48c83c9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN deleted file mode 100644 index 205dcc8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO deleted file mode 100644 index 62c96cb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO deleted file mode 100644 index e623db9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR deleted file mode 100644 index 20f82b8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS deleted file mode 100644 index 73b6eb3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU deleted file mode 100644 index 282cef0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX deleted file mode 100644 index b5c5ae5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX deleted file mode 100644 index de5325a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY deleted file mode 100644 index e60f47a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY deleted file mode 100644 index 3274f0b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 deleted file mode 100644 index c50b37c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 deleted file mode 100644 index e8541dd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 deleted file mode 100644 index 7950a47..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 deleted file mode 100644 index 384a5ea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 deleted file mode 100644 index 492a399..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 deleted file mode 100644 index 367a260..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 deleted file mode 100644 index f3765fc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 deleted file mode 100644 index 86faf28..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 deleted file mode 100644 index 5ce3e2c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA deleted file mode 100644 index da4615d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED deleted file mode 100644 index 175ce69..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF deleted file mode 100644 index f8a6eae..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF deleted file mode 100644 index 335af7b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH deleted file mode 100644 index 1ea602c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI deleted file mode 100644 index 887241f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK deleted file mode 100644 index de31f3f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL deleted file mode 100644 index 30fec6b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM deleted file mode 100644 index 93257b4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM deleted file mode 100644 index 854a2e4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN deleted file mode 100644 index ada09ad..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP deleted file mode 100644 index 25bf52d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP deleted file mode 100644 index d940b08..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ deleted file mode 100644 index 7a101c9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER deleted file mode 100644 index 7c04534..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER deleted file mode 100644 index ba23380..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER deleted file mode 100644 index 352bfd1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET deleted file mode 100644 index eea6ca3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU deleted file mode 100644 index 4f7dfc9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV deleted file mode 100644 index 22d127b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW deleted file mode 100644 index 6cf7918..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 deleted file mode 100644 index b8b046b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 deleted file mode 100644 index d1b83c0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 deleted file mode 100644 index 992a7de..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 deleted file mode 100644 index 200679a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 deleted file mode 100644 index 1214f89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 deleted file mode 100644 index 74e8b16..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 deleted file mode 100644 index 8e6eccb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 deleted file mode 100644 index 76e8da3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 deleted file mode 100644 index 91690d9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 deleted file mode 100644 index 99b3bea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 deleted file mode 100644 index e466016..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 deleted file mode 100644 index bbc9666..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 deleted file mode 100644 index d7a9428..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 deleted file mode 100644 index 5c4fb89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA deleted file mode 100644 index 4b53d2d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA deleted file mode 100644 index 738e4d2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/arm64e-apple-macos.swiftinterface_String-2BEOFOSJDDMFA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD deleted file mode 100644 index 4c1f051..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE deleted file mode 100644 index d649bdc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE deleted file mode 100644 index 2ca274e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI deleted file mode 100644 index 7a07368..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK deleted file mode 100644 index 463cf3b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK deleted file mode 100644 index 3a73af2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK deleted file mode 100644 index 7101aaa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM deleted file mode 100644 index 5eebe0c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN deleted file mode 100644 index c4b21a9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ deleted file mode 100644 index ce8050f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS deleted file mode 100644 index ce4f65a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS deleted file mode 100644 index a096cee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS deleted file mode 100644 index f7f04f1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV deleted file mode 100644 index a64a372..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW deleted file mode 100644 index fe8ab82..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW deleted file mode 100644 index 43bf864..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX deleted file mode 100644 index 2b06ede..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX deleted file mode 100644 index 22887eb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY deleted file mode 100644 index dff0a8e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ deleted file mode 100644 index c9eeaf2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ deleted file mode 100644 index 6c79289..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 deleted file mode 100644 index da6cae3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 deleted file mode 100644 index c6a9e0b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 deleted file mode 100644 index 6384e93..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 deleted file mode 100644 index 32adb89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 deleted file mode 100644 index ecd3234..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 deleted file mode 100644 index 55d79b3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G5/LocalLibraryStore.swift-3SESJ5G9BFFG5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G5/LocalLibraryStore.swift-3SESJ5G9BFFG5 deleted file mode 100644 index 96ae2d6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G5/LocalLibraryStore.swift-3SESJ5G9BFFG5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 deleted file mode 100644 index a8d1b82..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 deleted file mode 100644 index c4ae13f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 deleted file mode 100644 index 31da2aa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 deleted file mode 100644 index 167736c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 deleted file mode 100644 index 33aaa89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB deleted file mode 100644 index a63ea11..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB deleted file mode 100644 index c3cea85..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC deleted file mode 100644 index 4f0a799..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC deleted file mode 100644 index d15fd65..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE deleted file mode 100644 index 307ca10..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE deleted file mode 100644 index b738694..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF deleted file mode 100644 index 560a27d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF deleted file mode 100644 index 3a10808..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF deleted file mode 100644 index f6b55dc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG deleted file mode 100644 index 321031a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH deleted file mode 100644 index d4ee4c5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI deleted file mode 100644 index 9522de4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI deleted file mode 100644 index 45a79ea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI deleted file mode 100644 index 1efd21a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL deleted file mode 100644 index 36238e1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN deleted file mode 100644 index a126530..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO deleted file mode 100644 index 1a3e01d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO deleted file mode 100644 index 4bff99e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO deleted file mode 100644 index c6eb519..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO deleted file mode 100644 index b0dbe28..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ deleted file mode 100644 index f3c6c4c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS deleted file mode 100644 index d6c5312..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT deleted file mode 100644 index 6a7ab98..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT deleted file mode 100644 index 455036b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY deleted file mode 100644 index 488da5c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 deleted file mode 100644 index ef15942..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 deleted file mode 100644 index ff6802a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 deleted file mode 100644 index c8b433f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 deleted file mode 100644 index 5c2c782..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 deleted file mode 100644 index 62cbd3f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 deleted file mode 100644 index 0da1314..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 deleted file mode 100644 index 7567236..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 deleted file mode 100644 index de2c99c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 deleted file mode 100644 index dc4a98d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 deleted file mode 100644 index 77893ea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 deleted file mode 100644 index 979dbbc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 deleted file mode 100644 index 66a6b05..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 deleted file mode 100644 index 1f2bc14..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 deleted file mode 100644 index 262743a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 deleted file mode 100644 index 1c0ab5e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA deleted file mode 100644 index e572bd4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC deleted file mode 100644 index fb0933b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG deleted file mode 100644 index a81ece2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH deleted file mode 100644 index f28aaef..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH deleted file mode 100644 index b9bd040..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH deleted file mode 100644 index 75dd34f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ deleted file mode 100644 index 2eaee68..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM deleted file mode 100644 index b4802a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM deleted file mode 100644 index 71354ea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM deleted file mode 100644 index 64250fc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO deleted file mode 100644 index 123d730..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO deleted file mode 100644 index 776fb4d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP deleted file mode 100644 index c878f89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP deleted file mode 100644 index 4e38d3d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU deleted file mode 100644 index 40cb754..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV deleted file mode 100644 index 2e8c89e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW deleted file mode 100644 index 5838215..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY deleted file mode 100644 index c02aa7e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ deleted file mode 100644 index bf62572..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ deleted file mode 100644 index c9887cc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 deleted file mode 100644 index 901c801..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 deleted file mode 100644 index 6004312..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 deleted file mode 100644 index 277c389..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 deleted file mode 100644 index 9f76f90..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 deleted file mode 100644 index 5b4dd70..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 deleted file mode 100644 index fb78609..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 deleted file mode 100644 index d948f59..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 deleted file mode 100644 index bb5ba96..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 deleted file mode 100644 index 0d1945e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 deleted file mode 100644 index 9948923..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB deleted file mode 100644 index 6a3d0d4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID deleted file mode 100644 index f4ec351..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH deleted file mode 100644 index c10908e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II deleted file mode 100644 index a8035ee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ deleted file mode 100644 index 8b9f1a3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK deleted file mode 100644 index 61dc887..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK deleted file mode 100644 index 41e59a8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL deleted file mode 100644 index 318e8eb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL deleted file mode 100644 index d212048..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM deleted file mode 100644 index 3225789..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP deleted file mode 100644 index 12e45be..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP deleted file mode 100644 index f90ae8e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP deleted file mode 100644 index f014ff2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR deleted file mode 100644 index 483cee5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR deleted file mode 100644 index 3a8a528..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR deleted file mode 100644 index 22331cc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS deleted file mode 100644 index 24e5639..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT deleted file mode 100644 index fcda57f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IT/Models.swift-2VHVYVZLV9LIT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW deleted file mode 100644 index 975f9b5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW deleted file mode 100644 index bbdce81..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW deleted file mode 100644 index 9d5996b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW deleted file mode 100644 index 5dc4af3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX deleted file mode 100644 index 114edba..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 deleted file mode 100644 index 9c39ad4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 deleted file mode 100644 index 954ccab..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 deleted file mode 100644 index 23791ed..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 deleted file mode 100644 index bb18797..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 deleted file mode 100644 index 46a1cc1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 deleted file mode 100644 index 418d7f9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 deleted file mode 100644 index 9017b56..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 deleted file mode 100644 index 6bb01fe..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 deleted file mode 100644 index ab0130a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 deleted file mode 100644 index f3fca6d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 deleted file mode 100644 index eb99a1e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 deleted file mode 100644 index 9e96d89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA deleted file mode 100644 index d54fc90..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD deleted file mode 100644 index e416433..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE deleted file mode 100644 index 66d0e68..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE deleted file mode 100644 index 3373be9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE deleted file mode 100644 index dfd5c5a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF deleted file mode 100644 index a6707a2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG deleted file mode 100644 index c7a589d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI deleted file mode 100644 index 3c2a974..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI deleted file mode 100644 index 288e974..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI deleted file mode 100644 index 912d5a0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ deleted file mode 100644 index 3ec34bf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL deleted file mode 100644 index 173f16f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM deleted file mode 100644 index b0fbcf6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM deleted file mode 100644 index 025965f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP deleted file mode 100644 index b0e192f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP deleted file mode 100644 index 0d50bb9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP deleted file mode 100644 index e13babe..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP deleted file mode 100644 index c6a19a8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP deleted file mode 100644 index 8a82aa6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ deleted file mode 100644 index 1502529..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR deleted file mode 100644 index 6626800..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS deleted file mode 100644 index 14e5496..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS deleted file mode 100644 index fa46766..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU deleted file mode 100644 index 6cef17b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW deleted file mode 100644 index e41ae54..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX deleted file mode 100644 index e17ca97..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY deleted file mode 100644 index f8eef19..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 deleted file mode 100644 index e861ed8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 deleted file mode 100644 index 3d70282..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 deleted file mode 100644 index 31cc150..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 deleted file mode 100644 index d9bdb0d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 deleted file mode 100644 index c57d809..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 deleted file mode 100644 index 4c5b971..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 deleted file mode 100644 index 492805c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 deleted file mode 100644 index ad244e2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 deleted file mode 100644 index 84e81a8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA deleted file mode 100644 index acb3f2a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA deleted file mode 100644 index 8f02097..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB deleted file mode 100644 index 643c677..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB deleted file mode 100644 index c2d4287..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB deleted file mode 100644 index c8b02f5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB deleted file mode 100644 index ab4c5af..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB deleted file mode 100644 index 40bcd70..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE deleted file mode 100644 index 1f50de1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE deleted file mode 100644 index 19c8766..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE deleted file mode 100644 index 864e8a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG deleted file mode 100644 index d373562..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG deleted file mode 100644 index 8bd0205..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI deleted file mode 100644 index ecd36e5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ deleted file mode 100644 index 98f98f5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ deleted file mode 100644 index 2b529df..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ deleted file mode 100644 index 7e09404..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ deleted file mode 100644 index b83d887..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL deleted file mode 100644 index 158fa28..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM deleted file mode 100644 index c11b623..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN deleted file mode 100644 index 74b1601..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN deleted file mode 100644 index 406ea94..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN deleted file mode 100644 index 28113ef..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP deleted file mode 100644 index 6bbe539..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR deleted file mode 100644 index 11bf305..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR deleted file mode 100644 index 9aee30a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS deleted file mode 100644 index a7b344a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS deleted file mode 100644 index 0c28d16..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT deleted file mode 100644 index 51b7aae..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU deleted file mode 100644 index a04bf4f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV deleted file mode 100644 index 6591ce0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 deleted file mode 100644 index bbd774e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 deleted file mode 100644 index 6339774..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 deleted file mode 100644 index 176b67f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 deleted file mode 100644 index bb61bb1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 deleted file mode 100644 index 3274f6f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 deleted file mode 100644 index 970ac07..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 deleted file mode 100644 index 9332050..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 deleted file mode 100644 index 647d290..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 deleted file mode 100644 index c750605..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 deleted file mode 100644 index ca40424..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA deleted file mode 100644 index 8b3c16b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA deleted file mode 100644 index 15fa85d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC deleted file mode 100644 index b0ce020..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE deleted file mode 100644 index cdfecc3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE deleted file mode 100644 index b3680a3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG deleted file mode 100644 index 94d0c7a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH deleted file mode 100644 index 6c153ec..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH deleted file mode 100644 index e1c63db..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI deleted file mode 100644 index ab0b805..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ deleted file mode 100644 index d4c35ea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN deleted file mode 100644 index b22ea13..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO deleted file mode 100644 index f2ba87c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO deleted file mode 100644 index 96bf919..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP deleted file mode 100644 index 34f9f70..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ deleted file mode 100644 index 2fbac45..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW deleted file mode 100644 index d4059b6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX deleted file mode 100644 index f1c913d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY deleted file mode 100644 index f10b5be..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 deleted file mode 100644 index f975567..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 deleted file mode 100644 index 7b948a2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 deleted file mode 100644 index 946160e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 deleted file mode 100644 index ff02904..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 deleted file mode 100644 index 69767c0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 deleted file mode 100644 index d4f0220..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 deleted file mode 100644 index 43ddfb2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 deleted file mode 100644 index efdd5fc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 deleted file mode 100644 index 449a3cd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 deleted file mode 100644 index 2aa41bf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 deleted file mode 100644 index 5868009..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 deleted file mode 100644 index 785257d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 deleted file mode 100644 index 14c62fd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA deleted file mode 100644 index 6f82d01..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB deleted file mode 100644 index 25903cd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC deleted file mode 100644 index df37c8f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF deleted file mode 100644 index f9e7967..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG deleted file mode 100644 index e3dc037..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH deleted file mode 100644 index c0e4de4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH deleted file mode 100644 index 59ea876..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH deleted file mode 100644 index 11585f9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ deleted file mode 100644 index 1d2d2ee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ deleted file mode 100644 index faef055..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN deleted file mode 100644 index be64bc4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN deleted file mode 100644 index fe4d932..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO deleted file mode 100644 index 3853c6d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP deleted file mode 100644 index e072794..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ deleted file mode 100644 index f642c21..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ deleted file mode 100644 index 9d4e48c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS deleted file mode 100644 index 0615a59..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS deleted file mode 100644 index e115798..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS deleted file mode 100644 index 54e9907..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT deleted file mode 100644 index 532347c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU deleted file mode 100644 index 8b2faa0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX deleted file mode 100644 index 065e1c3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ deleted file mode 100644 index 19f655e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ deleted file mode 100644 index 54da647..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 deleted file mode 100644 index f250f70..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 deleted file mode 100644 index 77ae94d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 deleted file mode 100644 index 8611299..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 deleted file mode 100644 index 1a4f4a7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 deleted file mode 100644 index f97f215..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 deleted file mode 100644 index 27adc6b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA deleted file mode 100644 index 58dcc1f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB deleted file mode 100644 index 31912fa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND deleted file mode 100644 index fe53ac0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND deleted file mode 100644 index 283bf71..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE deleted file mode 100644 index 2801b0f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF deleted file mode 100644 index b08dbdd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF deleted file mode 100644 index 9dccab4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF deleted file mode 100644 index 320deee..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG deleted file mode 100644 index 5255215..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH deleted file mode 100644 index 3a0d542..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH deleted file mode 100644 index e727fa3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI deleted file mode 100644 index 2307d22..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ deleted file mode 100644 index 110ddf5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ deleted file mode 100644 index 687ccd8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ deleted file mode 100644 index 8c729c2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ deleted file mode 100644 index 183bf05..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK deleted file mode 100644 index 3d72fdd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK deleted file mode 100644 index 79330de..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL deleted file mode 100644 index 509c707..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM deleted file mode 100644 index a84d8d7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO deleted file mode 100644 index cf2324a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP deleted file mode 100644 index 887048b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR deleted file mode 100644 index d61e8fc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR deleted file mode 100644 index 92947dd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR deleted file mode 100644 index a317957..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW deleted file mode 100644 index f8ac640..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX deleted file mode 100644 index 745df8d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY deleted file mode 100644 index 9d9b667..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY deleted file mode 100644 index c2a9a37..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ deleted file mode 100644 index 814a3c5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 deleted file mode 100644 index a851033..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 deleted file mode 100644 index bbe353f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 deleted file mode 100644 index 16a7374..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 deleted file mode 100644 index 2ca1025..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 deleted file mode 100644 index 0261331..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 deleted file mode 100644 index 1238138..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 deleted file mode 100644 index 539edb0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 deleted file mode 100644 index af8a382..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 deleted file mode 100644 index af7fe2c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA deleted file mode 100644 index 45d0e6f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC deleted file mode 100644 index d033974..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC deleted file mode 100644 index 831c0f7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC deleted file mode 100644 index 1a36c22..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE deleted file mode 100644 index 49a5e86..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE deleted file mode 100644 index a55ade7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE deleted file mode 100644 index d2bf994..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE deleted file mode 100644 index 3d80826..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF deleted file mode 100644 index 6ff7cbe..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH deleted file mode 100644 index fe2cb47..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH deleted file mode 100644 index e69f781..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ deleted file mode 100644 index 1245aea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ deleted file mode 100644 index 311a96f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK deleted file mode 100644 index e000922..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/VelodyAPIClient.swift-2GJC99CIJ2HOL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/VelodyAPIClient.swift-2GJC99CIJ2HOL deleted file mode 100644 index 58fe59b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OL/VelodyAPIClient.swift-2GJC99CIJ2HOL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM deleted file mode 100644 index e00f5d4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO deleted file mode 100644 index 35866a0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO deleted file mode 100644 index db0fdcb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP deleted file mode 100644 index 98e32a7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR deleted file mode 100644 index 7ab7b72..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR deleted file mode 100644 index e55d377..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT deleted file mode 100644 index 4d6c93a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU deleted file mode 100644 index 0b8ee9b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU deleted file mode 100644 index a555079..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW deleted file mode 100644 index a6574eb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX deleted file mode 100644 index 25204c4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY deleted file mode 100644 index b8d5c7e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ deleted file mode 100644 index 860b836..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 deleted file mode 100644 index 2d16f1a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 deleted file mode 100644 index 6a82d6a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 deleted file mode 100644 index 8645d06..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 deleted file mode 100644 index 5fd5375..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 deleted file mode 100644 index 1281744..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 deleted file mode 100644 index 2edef90..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB deleted file mode 100644 index 4ec958b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC deleted file mode 100644 index 88787c3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD deleted file mode 100644 index 7a56f1d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE deleted file mode 100644 index afd364e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG deleted file mode 100644 index 04c5590..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG deleted file mode 100644 index 6fce1f3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH deleted file mode 100644 index 0f0b4e7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH deleted file mode 100644 index 7231991..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM deleted file mode 100644 index b649fbf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN deleted file mode 100644 index 2c364de..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP deleted file mode 100644 index e4db422..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP deleted file mode 100644 index 1b7f00e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU deleted file mode 100644 index a759ac1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU deleted file mode 100644 index d7baba6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX deleted file mode 100644 index 9297890..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 deleted file mode 100644 index af217a0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 deleted file mode 100644 index 8c5a92b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 deleted file mode 100644 index ac5a387..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 deleted file mode 100644 index 513ef16..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 deleted file mode 100644 index bd5de72..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 deleted file mode 100644 index b12fb8a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 deleted file mode 100644 index c42ce5c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 deleted file mode 100644 index 742bd70..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 deleted file mode 100644 index bce863e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 deleted file mode 100644 index f89345b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 deleted file mode 100644 index 8d39233..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA deleted file mode 100644 index 7077d63..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC deleted file mode 100644 index 46fedd3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD deleted file mode 100644 index 930725e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE deleted file mode 100644 index 4ce52eb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH deleted file mode 100644 index 629a4e2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH deleted file mode 100644 index 3d8a18f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH deleted file mode 100644 index c1b7eaa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH deleted file mode 100644 index a24b632..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM deleted file mode 100644 index c8a68a7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO deleted file mode 100644 index 17a818b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO deleted file mode 100644 index 1619f41..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP deleted file mode 100644 index 82e3682..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ deleted file mode 100644 index 407e98d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR deleted file mode 100644 index 1c13152..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR deleted file mode 100644 index 2fa551f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR deleted file mode 100644 index c8d0d92..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW deleted file mode 100644 index 3bedd50..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW deleted file mode 100644 index f63d9f0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX deleted file mode 100644 index 0ccceb7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 deleted file mode 100644 index 8fb1d8b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 deleted file mode 100644 index bb8fef5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 deleted file mode 100644 index d3d6e0b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 deleted file mode 100644 index 6bd921c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 deleted file mode 100644 index bf8444f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 deleted file mode 100644 index cc35153..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 deleted file mode 100644 index 14d279a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 deleted file mode 100644 index 7e6da69..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA deleted file mode 100644 index f2b4835..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA deleted file mode 100644 index 083b7d6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD deleted file mode 100644 index b2a7e49..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD deleted file mode 100644 index ca7a120..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF deleted file mode 100644 index 39337eb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF deleted file mode 100644 index 1db2467..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH deleted file mode 100644 index 4a5f2a2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH deleted file mode 100644 index 7d27822..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH deleted file mode 100644 index d936087..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH deleted file mode 100644 index 9450f23..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI deleted file mode 100644 index 301cc2b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ deleted file mode 100644 index bb0a81a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN deleted file mode 100644 index e5fdea2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO deleted file mode 100644 index d1431d7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP deleted file mode 100644 index cefb4e6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ deleted file mode 100644 index c13baa9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ deleted file mode 100644 index 48acd71..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR deleted file mode 100644 index 0b49caf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR deleted file mode 100644 index 7c47e64..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV deleted file mode 100644 index 6f2a62a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV deleted file mode 100644 index a735400..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV deleted file mode 100644 index 5d51994..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY deleted file mode 100644 index fd18b99..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ deleted file mode 100644 index 20a9dfd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 deleted file mode 100644 index 01be1b4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 deleted file mode 100644 index 145e895..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 deleted file mode 100644 index b2b73b5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 deleted file mode 100644 index af52021..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 deleted file mode 100644 index 7c5ff63..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 deleted file mode 100644 index 324c630..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 deleted file mode 100644 index 9f7ce0a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 deleted file mode 100644 index bc7d2bc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA deleted file mode 100644 index 3630258..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC deleted file mode 100644 index 9da8058..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE deleted file mode 100644 index 94f0371..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG deleted file mode 100644 index 2ec9437..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG deleted file mode 100644 index b086849..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI deleted file mode 100644 index f74bb30..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI deleted file mode 100644 index a3c5891..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI deleted file mode 100644 index c0c6a03..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI deleted file mode 100644 index da580a1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ deleted file mode 100644 index e11ba63..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK deleted file mode 100644 index cbc68f6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL deleted file mode 100644 index 5d52267..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR deleted file mode 100644 index 7f96087..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV deleted file mode 100644 index 2254cd9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 deleted file mode 100644 index 9fa1e53..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 deleted file mode 100644 index a210c18..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 deleted file mode 100644 index f600049..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 deleted file mode 100644 index 3f784fd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 deleted file mode 100644 index 08804a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 deleted file mode 100644 index 32b3512..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 deleted file mode 100644 index 500364b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 deleted file mode 100644 index 1e2f36c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 deleted file mode 100644 index b0cfbd8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 deleted file mode 100644 index c773c00..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 deleted file mode 100644 index 4b159d0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 deleted file mode 100644 index a1bd6ba..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 deleted file mode 100644 index bbf274c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 deleted file mode 100644 index 43c9a93..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 deleted file mode 100644 index bcefb87..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 deleted file mode 100644 index 5aa7b8f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 deleted file mode 100644 index ae2d979..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 deleted file mode 100644 index c7c1146..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA deleted file mode 100644 index d4076b9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA deleted file mode 100644 index 1c5a675..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB deleted file mode 100644 index cbee880..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC deleted file mode 100644 index a28655a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC deleted file mode 100644 index 3918bed..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC deleted file mode 100644 index 0f6e627..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD deleted file mode 100644 index 6c5d4f7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG deleted file mode 100644 index f13728a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG deleted file mode 100644 index f62ce29..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI deleted file mode 100644 index 5d1b1dc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK deleted file mode 100644 index 29e1a21..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM deleted file mode 100644 index 98a7eea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP deleted file mode 100644 index c098247..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ deleted file mode 100644 index 498666e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ deleted file mode 100644 index b97090a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR deleted file mode 100644 index 625e5a1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS deleted file mode 100644 index 5a0e311..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT deleted file mode 100644 index 34ca26f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT deleted file mode 100644 index 6e1479e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU deleted file mode 100644 index 2187700..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV deleted file mode 100644 index afff976..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW deleted file mode 100644 index 5a2e0dd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY deleted file mode 100644 index 96edce7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 deleted file mode 100644 index c26d811..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 deleted file mode 100644 index 7e9d6e5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 deleted file mode 100644 index e14c025..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 deleted file mode 100644 index 471548d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 deleted file mode 100644 index add69a0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 deleted file mode 100644 index 67597a1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 deleted file mode 100644 index a65162c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 deleted file mode 100644 index 2401bb1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 deleted file mode 100644 index 4a43a82..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 deleted file mode 100644 index 7338a3a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 deleted file mode 100644 index 4cd3afd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 deleted file mode 100644 index ea751c4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA deleted file mode 100644 index 26a428a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA deleted file mode 100644 index 4be0987..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA deleted file mode 100644 index df05d54..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB deleted file mode 100644 index ff2f313..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC deleted file mode 100644 index 6e9ce82..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD deleted file mode 100644 index 42ad46c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD deleted file mode 100644 index 0456eb3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF deleted file mode 100644 index dd67602..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF deleted file mode 100644 index b683d45..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG deleted file mode 100644 index 49444e0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH deleted file mode 100644 index f5344ed..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK deleted file mode 100644 index f3cb140..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM deleted file mode 100644 index a9c6664..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM deleted file mode 100644 index 2348687..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN deleted file mode 100644 index 1c2c361..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN deleted file mode 100644 index 7b4238a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN deleted file mode 100644 index 6a37e84..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP deleted file mode 100644 index ae493f3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR deleted file mode 100644 index e0d0e9f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR deleted file mode 100644 index 81b09e0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS deleted file mode 100644 index 464813f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT deleted file mode 100644 index 24419e8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV deleted file mode 100644 index 28fb61c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV deleted file mode 100644 index b954e17..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW deleted file mode 100644 index 593acff..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX deleted file mode 100644 index fe906b3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 deleted file mode 100644 index 2af60df..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 deleted file mode 100644 index 754449c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 deleted file mode 100644 index 79cd522..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 deleted file mode 100644 index 602760e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 deleted file mode 100644 index 4b40daf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 deleted file mode 100644 index 070a6aa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA deleted file mode 100644 index 47ee1a9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB deleted file mode 100644 index 5d6320d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD deleted file mode 100644 index 0598add..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF deleted file mode 100644 index bda2f80..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH deleted file mode 100644 index a1ea006..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ deleted file mode 100644 index 3b015fa..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK deleted file mode 100644 index 8a46523..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN deleted file mode 100644 index b7aef16..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN deleted file mode 100644 index 302681a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO deleted file mode 100644 index cf5f422..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO deleted file mode 100644 index de03261..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO deleted file mode 100644 index 9445b63..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ deleted file mode 100644 index 801bd67..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR deleted file mode 100644 index 4d61cae..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU deleted file mode 100644 index bc5c92e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU deleted file mode 100644 index ffbc0d1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV deleted file mode 100644 index 31b9890..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW deleted file mode 100644 index 93e6b21..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 deleted file mode 100644 index 08cf58a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 deleted file mode 100644 index 4d16f48..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 deleted file mode 100644 index 61db7bd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 deleted file mode 100644 index 3dedfe2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 deleted file mode 100644 index e221004..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 deleted file mode 100644 index 1e2d9a8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 deleted file mode 100644 index 9b51892..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 deleted file mode 100644 index 44bf47b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 deleted file mode 100644 index bd23051..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA deleted file mode 100644 index b3815ea..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD deleted file mode 100644 index 3411a21..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE deleted file mode 100644 index 3dfeb86..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE deleted file mode 100644 index fdb1bf6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG deleted file mode 100644 index 9d1f5af..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG deleted file mode 100644 index c9295da..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI deleted file mode 100644 index a0d7f3c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI deleted file mode 100644 index a7cf809..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI deleted file mode 100644 index 0eba9a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK deleted file mode 100644 index ef6c4a4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK deleted file mode 100644 index 1de5d0c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM deleted file mode 100644 index c64bd83..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO deleted file mode 100644 index b4303e5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO deleted file mode 100644 index 8896cfe..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP deleted file mode 100644 index 7194a03..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR deleted file mode 100644 index f37bf98..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR deleted file mode 100644 index 9bb3941..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT deleted file mode 100644 index 188c2a2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU deleted file mode 100644 index 1fed6c6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV deleted file mode 100644 index 73c06c8..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW deleted file mode 100644 index 8ce78e6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX deleted file mode 100644 index 6a3facd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ deleted file mode 100644 index 5a97458..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 deleted file mode 100644 index 9e9ff6e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 deleted file mode 100644 index 68e3081..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 deleted file mode 100644 index a058bc3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 deleted file mode 100644 index fb78df3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC deleted file mode 100644 index 81980ed..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF deleted file mode 100644 index cc8e14e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG deleted file mode 100644 index 2a20fb3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG deleted file mode 100644 index c4040c1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK deleted file mode 100644 index cc08a59..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM deleted file mode 100644 index eabeffc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM deleted file mode 100644 index bc09720..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO deleted file mode 100644 index 229e7ba..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO deleted file mode 100644 index d5e8abb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP deleted file mode 100644 index 16082d9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP deleted file mode 100644 index 6395fda..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ deleted file mode 100644 index 0ed717a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR deleted file mode 100644 index 2b10d00..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR deleted file mode 100644 index 902a1dd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU deleted file mode 100644 index c337502..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV deleted file mode 100644 index 2255a6c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX deleted file mode 100644 index 6ebac89..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX deleted file mode 100644 index 28ca2a6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY deleted file mode 100644 index 54c8ded..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 deleted file mode 100644 index 6f0c817..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 deleted file mode 100644 index bf3245a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 deleted file mode 100644 index 0c9ffed..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 deleted file mode 100644 index a575d81..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 deleted file mode 100644 index ed2df11..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 deleted file mode 100644 index 006f166..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 deleted file mode 100644 index 4ecac1f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 deleted file mode 100644 index cdeb6de..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 deleted file mode 100644 index eeb91d7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 deleted file mode 100644 index 6c772a2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE deleted file mode 100644 index e993166..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG deleted file mode 100644 index 3f49555..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH deleted file mode 100644 index 5b1f9c9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ deleted file mode 100644 index 03db300..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR deleted file mode 100644 index 6bc333c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT deleted file mode 100644 index fda9bef..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT deleted file mode 100644 index 499eb63..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU deleted file mode 100644 index 549d575..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV deleted file mode 100644 index 02aca3b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV deleted file mode 100644 index e5b0e2a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV deleted file mode 100644 index 6848f18..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW deleted file mode 100644 index 49f79d7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW deleted file mode 100644 index 539681c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW deleted file mode 100644 index d146012..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW deleted file mode 100644 index 168f297..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX deleted file mode 100644 index 2cc39a9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY deleted file mode 100644 index fbdd550..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY deleted file mode 100644 index fb9d08b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY deleted file mode 100644 index b52db97..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 deleted file mode 100644 index 80ac77f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 deleted file mode 100644 index d786447..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 deleted file mode 100644 index ef379ce..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 deleted file mode 100644 index 90bc7b1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 deleted file mode 100644 index b9279be..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 deleted file mode 100644 index 9cc9ca6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 deleted file mode 100644 index 7b6e0be..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 deleted file mode 100644 index 74136d4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 deleted file mode 100644 index c9b32ca..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 deleted file mode 100644 index b43d449..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB deleted file mode 100644 index 02c2631..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB deleted file mode 100644 index 8640e31..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC deleted file mode 100644 index 6e097c1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC deleted file mode 100644 index f5d62e3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC deleted file mode 100644 index 420075c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD deleted file mode 100644 index fb252b1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE deleted file mode 100644 index fee6ff6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE deleted file mode 100644 index 2f30076..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG deleted file mode 100644 index f459cdc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG deleted file mode 100644 index da29210..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG deleted file mode 100644 index 24dd7fb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH deleted file mode 100644 index f8ad16f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ deleted file mode 100644 index c2f6c6a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO deleted file mode 100644 index 617bcdf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP deleted file mode 100644 index dd58815..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR deleted file mode 100644 index f04f995..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR deleted file mode 100644 index 6a51c98..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR deleted file mode 100644 index 58c848f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS deleted file mode 100644 index 0629187..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW deleted file mode 100644 index 65eb0b4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX deleted file mode 100644 index cd88664..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX deleted file mode 100644 index f799da1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY deleted file mode 100644 index 34817bd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ deleted file mode 100644 index 035a980..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ deleted file mode 100644 index 44a6435..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-3SL6G91XRGB31 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-3SL6G91XRGB31 deleted file mode 100644 index cd7d943..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-3SL6G91XRGB31 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-W0KDSH1YBJTS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-W0KDSH1YBJTS deleted file mode 100644 index 80730e0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-W0KDSH1YBJTS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-3FYTO0N52AF0H b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-3FYTO0N52AF0H deleted file mode 100644 index da4fcdc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-3FYTO0N52AF0H and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-3GD1305YDPORS b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-3GD1305YDPORS deleted file mode 100644 index 160215a..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-3GD1305YDPORS and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2FIDLN5FZ98WK b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2FIDLN5FZ98WK deleted file mode 100644 index 59e7094..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-2FIDLN5FZ98WK and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-G2NV8DVY5HV6 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-G2NV8DVY5HV6 deleted file mode 100644 index f54689f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-G2NV8DVY5HV6 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-1O47ZIWG42ZPJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-1O47ZIWG42ZPJ deleted file mode 100644 index 2c8e34c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-1O47ZIWG42ZPJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-2QCA494M9NQWU b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-2QCA494M9NQWU deleted file mode 100644 index 920a2ec..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-2QCA494M9NQWU and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/LocalLibraryStore.swift.o-2TBLBUPEF5917 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/LocalLibraryStore.swift.o-2TBLBUPEF5917 deleted file mode 100644 index c9ae0f3..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/LocalLibraryStore.swift.o-2TBLBUPEF5917 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3SK8Z6EC9I99B b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3SK8Z6EC9I99B deleted file mode 100644 index 619d14f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3SK8Z6EC9I99B and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1GDFGF7PVRX6A b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1GDFGF7PVRX6A deleted file mode 100644 index e6df0e9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Models.swift.o-1GDFGF7PVRX6A and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-3GUZIXYMQK19X b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-3GUZIXYMQK19X deleted file mode 100644 index 269026b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-3GUZIXYMQK19X and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/PlaceholderSyncCoordinator.swift.o-35TXVJNYAYYTQ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/PlaceholderSyncCoordinator.swift.o-35TXVJNYAYYTQ deleted file mode 100644 index e76343c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/PlaceholderSyncCoordinator.swift.o-35TXVJNYAYYTQ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-27I8FR9M19FN7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-27I8FR9M19FN7 deleted file mode 100644 index 9d7a5f4..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-27I8FR9M19FN7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/VelodyAPIClient.swift.o-16JBP3NIO05GY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/VelodyAPIClient.swift.o-16JBP3NIO05GY deleted file mode 100644 index 59401c0..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/VelodyAPIClient.swift.o-16JBP3NIO05GY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-2AB5N74W9AFAL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-2AB5N74W9AFAL deleted file mode 100644 index 3d40169..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-2AB5N74W9AFAL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-2D6P949GXQ4MN b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-2D6P949GXQ4MN deleted file mode 100644 index f16fd4c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-2D6P949GXQ4MN and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-XG8EYD93PXZL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-XG8EYD93PXZL deleted file mode 100644 index b114e14..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-XG8EYD93PXZL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-1205N7VSDHPZL b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-1205N7VSDHPZL deleted file mode 100644 index adb0e87..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-1205N7VSDHPZL and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-2WJ7NZYYOJ4A4 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-2WJ7NZYYOJ4A4 deleted file mode 100644 index 144773d..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-2WJ7NZYYOJ4A4 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-28HPXF6BOVUXA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-28HPXF6BOVUXA deleted file mode 100644 index bcb9bb6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-28HPXF6BOVUXA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-3HJA9FXBMUADY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-3HJA9FXBMUADY deleted file mode 100644 index 2173da9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-3HJA9FXBMUADY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-2HO3AYE1DXHOC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-2HO3AYE1DXHOC deleted file mode 100644 index 43d283f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-2HO3AYE1DXHOC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-1L460C8RMTCZB b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-1L460C8RMTCZB deleted file mode 100644 index 72bb150..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-1L460C8RMTCZB and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-5JA6ZBSBWSFV b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-5JA6ZBSBWSFV deleted file mode 100644 index 4a01891..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-5JA6ZBSBWSFV and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-3OUKVC9PD74ZG b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-3OUKVC9PD74ZG deleted file mode 100644 index d5d8877..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-3OUKVC9PD74ZG and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-3POCXIY9NT234 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-3POCXIY9NT234 deleted file mode 100644 index 551b19e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-3POCXIY9NT234 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-1BCYFC8SSFV34 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-1BCYFC8SSFV34 deleted file mode 100644 index ea59c6c..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-1BCYFC8SSFV34 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 deleted file mode 100644 index 2f5060e..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM deleted file mode 100644 index d8a4a68..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 deleted file mode 100644 index 52a13bf..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 deleted file mode 100644 index 6f834ad..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G deleted file mode 100644 index 2683292..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA deleted file mode 100644 index 337d2f5..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC deleted file mode 100644 index 7e25ddb..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 deleted file mode 100644 index ced55f7..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 deleted file mode 100644 index ad67abd..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 deleted file mode 100644 index ab19d26..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND deleted file mode 100644 index fe3c230..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V deleted file mode 100644 index 739a46f..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC deleted file mode 100644 index d51f28b..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 deleted file mode 100644 index ca69ec9..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF deleted file mode 100644 index 2532655..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-3VDDL7LMYV7KC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-3VDDL7LMYV7KC deleted file mode 100644 index 13eff56..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-3VDDL7LMYV7KC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-18ZNKQM7DWGMF b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-18ZNKQM7DWGMF deleted file mode 100644 index de5acc1..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-18ZNKQM7DWGMF and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3OEL6K7PH5GAC b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3OEL6K7PH5GAC deleted file mode 100644 index dbde4c6..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-3OEL6K7PH5GAC and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-14QBR3PQ18IAY b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-14QBR3PQ18IAY deleted file mode 100644 index 018fcfc..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-14QBR3PQ18IAY and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-3SZ6R8JZ2ODER b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-3SZ6R8JZ2ODER deleted file mode 100644 index 1832ff2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-3SZ6R8JZ2ODER and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-1K8IOUY0OKGFJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-1K8IOUY0OKGFJ deleted file mode 100644 index 5c1f5b2..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-1K8IOUY0OKGFJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3N02BCHGL14NX b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3N02BCHGL14NX deleted file mode 100644 index 7d5a526..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-3N02BCHGL14NX and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1ALO7PRNIH1NJ b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1ALO7PRNIH1NJ deleted file mode 100644 index 9500787..0000000 Binary files a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-1ALO7PRNIH1NJ and /dev/null differ diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/plugin-tools-description.json b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/plugin-tools-description.json deleted file mode 100644 index fe9f3e4..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/plugin-tools-description.json +++ /dev/null @@ -1,749 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyDomain-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyDomain", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build", - "wholeModuleOptimization" : false - }, - "C.VelodyNetworking-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyNetworking", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build", - "wholeModuleOptimization" : false - }, - "C.VelodyPersistence-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyPersistence", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build", - "wholeModuleOptimization" : false - }, - "C.VelodySync-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodySync", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodysync" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyDomain" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyDomain", - "-package-name", - "velodydomain", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodydomain", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyNetworking" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyNetworking", - "-package-name", - "velodynetworking", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodynetworking", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodyPersistence" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyPersistence", - "-package-name", - "velodypersistence", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodypersistence", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ], - "VelodySync" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodySync", - "-package-name", - "velodysync", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodysync", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyDomain" : [ - - ], - "VelodyNetworking" : [ - "VelodyDomain" - ], - "VelodyPersistence" : [ - "VelodyDomain" - ], - "VelodySync" : [ - "VelodyPersistence", - "VelodyNetworking", - "VelodyDomain" - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt b/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt deleted file mode 100644 index caf9e2b..0000000 --- a/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt +++ /dev/null @@ -1,2 +0,0 @@ -Apple Swift version 6.3.2 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -Target: arm64-apple-macosx26.0 diff --git a/packages/apple/VelodySync/.build/build.db b/packages/apple/VelodySync/.build/build.db deleted file mode 100644 index f9e5f8e..0000000 Binary files a/packages/apple/VelodySync/.build/build.db and /dev/null differ diff --git a/packages/apple/VelodySync/.build/debug b/packages/apple/VelodySync/.build/debug deleted file mode 120000 index 9733fca..0000000 --- a/packages/apple/VelodySync/.build/debug +++ /dev/null @@ -1 +0,0 @@ -arm64-apple-macosx/debug \ No newline at end of file diff --git a/packages/apple/VelodySync/.build/debug.yaml b/packages/apple/VelodySync/.build/debug.yaml deleted file mode 100644 index c021a18..0000000 --- a/packages/apple/VelodySync/.build/debug.yaml +++ /dev/null @@ -1,104 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "VelodyNetworking-arm64-apple-macosx-debug.module": [""] - "VelodyPersistence-arm64-apple-macosx-debug.module": [""] - "VelodySync-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "C.VelodyNetworking-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - description: "Compiling Swift Module 'VelodyNetworking' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyNetworking","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodynetworking"] - - "C.VelodyPersistence-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - description: "Compiling Swift Module 'VelodyPersistence' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyPersistence","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodypersistence"] - - "C.VelodySync-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule"] - description: "Compiling Swift Module 'VelodySync' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodySync","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodysync"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodySync/.build/plugin-tools.yaml b/packages/apple/VelodySync/.build/plugin-tools.yaml deleted file mode 100644 index c021a18..0000000 --- a/packages/apple/VelodySync/.build/plugin-tools.yaml +++ /dev/null @@ -1,104 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyDomain-arm64-apple-macosx-debug.module": [""] - "VelodyNetworking-arm64-apple-macosx-debug.module": [""] - "VelodyPersistence-arm64-apple-macosx-debug.module": [""] - "VelodySync-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - outputs: [""] - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule"] - outputs: [""] - - "C.VelodyDomain-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain/Sources/VelodyDomain/Models.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/Models.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule"] - description: "Compiling Swift Module 'VelodyDomain' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyDomain","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyDomain.build/include/VelodyDomain-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodydomain"] - - "C.VelodyNetworking-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking/Sources/VelodyNetworking/VelodyAPIClient.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/VelodyAPIClient.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule"] - description: "Compiling Swift Module 'VelodyNetworking' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyNetworking","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyNetworking.build/include/VelodyNetworking-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodynetworking"] - - "C.VelodyPersistence-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence/Sources/VelodyPersistence/LocalLibraryStore.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/LocalLibraryStore.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule"] - description: "Compiling Swift Module 'VelodyPersistence' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyPersistence","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodyPersistence.build/include/VelodyPersistence-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodypersistence"] - - "C.VelodySync-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyDomain.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyNetworking.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodyPersistence.swiftmodule","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/PlaceholderSyncCoordinator.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule"] - description: "Compiling Swift Module 'VelodySync' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodySync","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules/VelodySync.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/.build/arm64-apple-macosx/debug/VelodySync.build/include/VelodySync-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodysync"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Sources/VelodySync/","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodySync/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodySync/.build/workspace-state.json b/packages/apple/VelodySync/.build/workspace-state.json deleted file mode 100644 index d677e22..0000000 --- a/packages/apple/VelodySync/.build/workspace-state.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "object" : { - "artifacts" : [ - - ], - "dependencies" : [ - { - "basedOn" : null, - "packageRef" : { - "identity" : "velodydomain", - "kind" : "fileSystem", - "location" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain", - "name" : "VelodyDomain" - }, - "state" : { - "name" : "fileSystem", - "path" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyDomain" - }, - "subpath" : "velodydomain" - }, - { - "basedOn" : null, - "packageRef" : { - "identity" : "velodynetworking", - "kind" : "fileSystem", - "location" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking", - "name" : "VelodyNetworking" - }, - "state" : { - "name" : "fileSystem", - "path" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyNetworking" - }, - "subpath" : "velodynetworking" - }, - { - "basedOn" : null, - "packageRef" : { - "identity" : "velodypersistence", - "kind" : "fileSystem", - "location" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence", - "name" : "VelodyPersistence" - }, - "state" : { - "name" : "fileSystem", - "path" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyPersistence" - }, - "subpath" : "velodypersistence" - } - ], - "prebuilts" : [ - - ] - }, - "version" : 7 -} \ No newline at end of file diff --git a/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift b/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift index b86abae..a09f08c 100644 --- a/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift +++ b/packages/apple/VelodySync/Sources/VelodySync/PlaceholderSyncCoordinator.swift @@ -45,7 +45,8 @@ public actor PlaceholderSyncCoordinator: SyncCoordinator { LibraryTrack( title: "Velody Placeholder", artist: "Private Library", - album: "Phase 1" + album: "Phase 1", + localFilePath: "" ), ] await store.replaceTracks(tracks) diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm deleted file mode 100644 index 362f467..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CFNetwork-1PNPO1ORVQZLS.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm deleted file mode 100644 index a1b800a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreFoundation-16SA8WK3L6MQN.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm deleted file mode 100644 index db96834..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/CoreServices-39NCTJOEW7PQ2.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm deleted file mode 100644 index ced268f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Darwin-1FXX23EKWOBA9.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm deleted file mode 100644 index f1f0370..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/DiskArbitration-3LBJF5I58QD8.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm deleted file mode 100644 index ee6a711..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Dispatch-R76HXUP80TVL.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm deleted file mode 100644 index ac4ac36..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Foundation-24LYWIP48SHNP.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm deleted file mode 100644 index 2b560a0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/IOKit-1IAL9NTK1TABA.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm deleted file mode 100644 index 1462fbd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/MachO-20RPYVQSX341K.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm deleted file mode 100644 index c3cb76e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ObjectiveC-1G8H182PQX3QE.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm deleted file mode 100644 index 193fa45..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/Security-3QCVXOV25KK54.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 16a434c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/SwiftShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm deleted file mode 100644 index 9a1c585..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/XPC-T0ZXCAST7PE3.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm deleted file mode 100644 index ce97c53..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_AvailabilityInternal-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 2c16d21..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_float-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 3ee9437..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index d01f350..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_limits-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index fec7901..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 60ebf1d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 454b60e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stddef-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 4ec2ee8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_Builtin_stdint-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm deleted file mode 100644 index 96c7991..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation1-2YSBQADOLX02V.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm deleted file mode 100644 index fb20507..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation2-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm deleted file mode 100644 index cac4c23..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_DarwinFoundation3-2NSGASPTSNBVQ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm deleted file mode 100644 index 5ada456..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm deleted file mode 100644 index e4e7a98..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/launch-3T3BU4MASLMUM.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm deleted file mode 100644 index ca525d5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libDER-26DYHF6GC6WWA.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm deleted file mode 100644 index 78f452b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/libkern-2KQ0X67RTM1JF.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm deleted file mode 100644 index e06eee7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_object-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm deleted file mode 100644 index 26f3d45..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/os_workgroup-2MV8OP7R98AN8.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 633a869..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrauth-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm deleted file mode 100644 index 0f5cb18..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/ptrcheck-2OQWMRBVRD4OJ.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm deleted file mode 100644 index d28fd4e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/9B4FJT9IY7SN/sys_types-3J4ZFA06I5V1P.pcm and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule deleted file mode 100644 index 0d212ac..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Combine-1EQAXYQ1ZMN4H.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 491412 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule deleted file mode 100644 index ec8012b..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/CoreFoundation-22HAUMCA1ORHR.swiftmodule +++ /dev/null @@ -1,68 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405610000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 179160 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule deleted file mode 100644 index d8914c0..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Darwin-1I30EQH4W8U7Q.swiftmodule +++ /dev/null @@ -1,36 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 77504 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule deleted file mode 100644 index 95ebaec..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Dispatch-22MFO27Z338E9.swiftmodule +++ /dev/null @@ -1,64 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405605000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 210900 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule deleted file mode 100644 index 34a0aba..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Foundation-2KPIZ7RLTUINW.swiftmodule +++ /dev/null @@ -1,100 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405644000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 3785860 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1772776850000000000 - path: 'System/Library/Frameworks/Security.framework/Headers/Security.apinotes' - size: 162 - sdk_relative: true - - mtime: 1772253432000000000 - path: 'System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes' - size: 81098 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true - - mtime: 1776564811000000000 - path: 'System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1155103 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule deleted file mode 100644 index c0fdeb6..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/IOKit-27P2CWMDKCH6K.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405613000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30136 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563970000000000 - path: 'usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22494 - sdk_relative: true - - mtime: 1776564143000000000 - path: 'usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 3690 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule deleted file mode 100644 index a2a4108..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/ObjectiveC-2MHMCIQZRO2XQ.swiftmodule +++ /dev/null @@ -1,52 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405587000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 50836 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule deleted file mode 100644 index 748ae1f..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Observation-15JCCHA75WSBO.swiftmodule +++ /dev/null @@ -1,44 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405589000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 30876 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776561853000000000 - path: 'usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 5150 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule deleted file mode 100644 index 1432dc9..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/Swift-5SCGS38H536W.swiftmodule +++ /dev/null @@ -1,12 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405569000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Swift.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 15012500 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule deleted file mode 100644 index de1fb4a..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/SwiftOnoneSupport-FWNPXCMARJWF.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 18524 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559148000000000 - path: 'usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1411 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule deleted file mode 100644 index 3596a85..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/System-CKULLR02RGWI.swiftmodule +++ /dev/null @@ -1,48 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405596000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 401660 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563484000000000 - path: 'usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 95431 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule deleted file mode 100644 index 83acb25..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/XPC-2VNRFL3XB8YLU.swiftmodule +++ /dev/null @@ -1,72 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405609000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 117716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true - - mtime: 1776561805000000000 - path: 'usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 19539 - sdk_relative: true - - mtime: 1771712577000000000 - path: 'usr/include/ObjectiveC.apinotes' - size: 11147 - sdk_relative: true - - mtime: 1771712453000000000 - path: 'usr/include/Dispatch.apinotes' - size: 19 - sdk_relative: true - - mtime: 1772774440000000000 - path: 'usr/include/XPC.apinotes' - size: 123 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true - - mtime: 1776563522000000000 - path: 'System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 167873 - sdk_relative: true - - mtime: 1776563516000000000 - path: 'usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 6636 - sdk_relative: true - - mtime: 1776563739000000000 - path: 'usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 57506 - sdk_relative: true - - mtime: 1776563957000000000 - path: 'usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 45109 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule deleted file mode 100644 index fbe57da..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_Builtin_float-B6LO026V23Y2.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405573000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23716 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559222000000000 - path: 'usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 4363 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule deleted file mode 100644 index a57816b..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_Concurrency-A02JKZOISK22.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405583000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 748656 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776559177000000000 - path: 'usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 280495 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule deleted file mode 100644 index 197735f..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation1-2HZT72OVL491O.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405578000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 92188 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule deleted file mode 100644 index 698d567..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation2-3UAUL5CUVGLDQ.swiftmodule +++ /dev/null @@ -1,24 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405579000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 23256 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule deleted file mode 100644 index 824fb22..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_DarwinFoundation3-3FR8V471VU2CU.swiftmodule +++ /dev/null @@ -1,28 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405580000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 20564 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1772775407000000000 - path: 'usr/include/_DarwinFoundation2.apinotes' - size: 1145 - sdk_relative: true - - mtime: 1776561783000000000 - path: 'usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 18805 - sdk_relative: true - - mtime: 1776561789000000000 - path: 'usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2677 - sdk_relative: true - - mtime: 1776561795000000000 - path: 'usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 1573 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule deleted file mode 100644 index 8634693..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache/_StringProcessing-22Y1OZRFG9JUE.swiftmodule +++ /dev/null @@ -1,16 +0,0 @@ ---- -path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' -dependencies: - - mtime: 1777405576000000000 - path: '/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule' - size: 84172 - - mtime: 1776558630000000000 - path: 'usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 2193647 - sdk_relative: true - - mtime: 1776562794000000000 - path: 'usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface' - size: 22987 - sdk_relative: true -version: 1 -... diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.abi.json b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.abi.json deleted file mode 100644 index d2f988e..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.abi.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ABIRoot": { - "kind": "Root", - "name": "NO_MODULE", - "printedName": "NO_MODULE", - "json_format_version": 8 - }, - "ConstValues": [] -} \ No newline at end of file diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftdoc b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftdoc deleted file mode 100644 index ad756cd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftdoc and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule deleted file mode 100644 index 9ca84fd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftsourceinfo b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftsourceinfo deleted file mode 100644 index 09132e9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftsourceinfo and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.d b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.d deleted file mode 100644 index b2a681d..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.d +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o : /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/XPC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Combine.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Dispatch.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/System.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Darwin.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Foundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/Observation.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/IOKit.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx/prebuilt-modules/26.5/_Concurrency.swiftmodule/arm64e-apple-macos.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.dia b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.dia and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o deleted file mode 100644 index fb37cbc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swiftdeps b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swiftdeps deleted file mode 100644 index 01443b2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swiftdeps and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/VelodyUtilities.emit-module.d b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/VelodyUtilities.emit-module.d deleted file mode 100644 index 3cce055..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/VelodyUtilities.emit-module.d +++ /dev/null @@ -1,4 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule : /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftdoc : /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h : /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes -/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftsourceinfo : /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation1.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation2.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_DarwinFoundation3.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/XPC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/ObjectiveC.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Combine.framework/Modules/Combine.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_StringProcessing.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Dispatch.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/System.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Darwin.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Modules/Foundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/CoreFoundation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Observation.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Builtin_float.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/Swift.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/IOKit.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/SwiftOnoneSupport.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/lib/swift/_Concurrency.swiftmodule/arm64e-apple-macos.swiftinterface /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/_DarwinFoundation2.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/XPC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/ObjectiveC.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/usr/include/Dispatch.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Foundation.framework/Headers/Foundation.apinotes /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk/System/Library/Frameworks/Security.framework/Headers/Security.apinotes diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/VelodyUtilities.emit-module.dia b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/VelodyUtilities.emit-module.dia deleted file mode 100644 index 093d351..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/VelodyUtilities.emit-module.dia and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h deleted file mode 100644 index 79afc5c..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h +++ /dev/null @@ -1,376 +0,0 @@ -// Generated by Apple Swift version 6.3.2 effective-5.10 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -#ifndef VELODYUTILITIES_SWIFT_H -#define VELODYUTILITIES_SWIFT_H -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wgcc-compat" - -#if !defined(__has_include) -# define __has_include(x) 0 -#endif -#if !defined(__has_attribute) -# define __has_attribute(x) 0 -#endif -#if !defined(__has_feature) -# define __has_feature(x) 0 -#endif -#if !defined(__has_warning) -# define __has_warning(x) 0 -#endif - -#if __has_include() -# include -#endif - -#pragma clang diagnostic ignored "-Wauto-import" -#if defined(__OBJC__) -#include -#endif // defined(__OBJC__) -#if defined(__cplusplus) -#include -#include -#include -#include -#include -#include -#include -#else -#include -#include -#include -#include -#endif -#if defined(__cplusplus) -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wnon-modular-include-in-framework-module" -#if defined(__arm64e__) && __has_include() -# include -#else -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wreserved-macro-identifier" -# ifndef __ptrauth_swift_value_witness_function_pointer -# define __ptrauth_swift_value_witness_function_pointer(x) -# endif -# ifndef __ptrauth_swift_class_method_pointer -# define __ptrauth_swift_class_method_pointer(x) -# endif -#pragma clang diagnostic pop -#endif -#pragma clang diagnostic pop -#endif - -#if !defined(SWIFT_TYPEDEFS) -# define SWIFT_TYPEDEFS 1 -# if __has_include() -# include -# elif !defined(__cplusplus) -typedef unsigned char char8_t; -typedef uint_least16_t char16_t; -typedef uint_least32_t char32_t; -# endif -typedef float swift_float2 __attribute__((__ext_vector_type__(2))); -typedef float swift_float3 __attribute__((__ext_vector_type__(3))); -typedef float swift_float4 __attribute__((__ext_vector_type__(4))); -typedef double swift_double2 __attribute__((__ext_vector_type__(2))); -typedef double swift_double3 __attribute__((__ext_vector_type__(3))); -typedef double swift_double4 __attribute__((__ext_vector_type__(4))); -typedef int swift_int2 __attribute__((__ext_vector_type__(2))); -typedef int swift_int3 __attribute__((__ext_vector_type__(3))); -typedef int swift_int4 __attribute__((__ext_vector_type__(4))); -typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); -typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); -typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); -#endif - -#if !defined(SWIFT_PASTE) -# define SWIFT_PASTE_HELPER(x, y) x##y -# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) -#endif -#if !defined(SWIFT_METATYPE) -# define SWIFT_METATYPE(X) Class -#endif -#if !defined(SWIFT_CLASS_PROPERTY) -# if __has_feature(objc_class_property) -# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ -# else -# define SWIFT_CLASS_PROPERTY(...) -# endif -#endif -#if !defined(SWIFT_RUNTIME_NAME) -# if __has_attribute(objc_runtime_name) -# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) -# else -# define SWIFT_RUNTIME_NAME(X) -# endif -#endif -#if !defined(SWIFT_COMPILE_NAME) -# if __has_attribute(swift_name) -# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) -# else -# define SWIFT_COMPILE_NAME(X) -# endif -#endif -#if !defined(SWIFT_METHOD_FAMILY) -# if __has_attribute(objc_method_family) -# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) -# else -# define SWIFT_METHOD_FAMILY(X) -# endif -#endif -#if !defined(SWIFT_NOESCAPE) -# if __has_attribute(noescape) -# define SWIFT_NOESCAPE __attribute__((noescape)) -# else -# define SWIFT_NOESCAPE -# endif -#endif -#if !defined(SWIFT_RELEASES_ARGUMENT) -# if __has_attribute(ns_consumed) -# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed)) -# else -# define SWIFT_RELEASES_ARGUMENT -# endif -#endif -#if !defined(SWIFT_WARN_UNUSED_RESULT) -# if __has_attribute(warn_unused_result) -# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) -# else -# define SWIFT_WARN_UNUSED_RESULT -# endif -#endif -#if !defined(SWIFT_NORETURN) -# if __has_attribute(noreturn) -# define SWIFT_NORETURN __attribute__((noreturn)) -# else -# define SWIFT_NORETURN -# endif -#endif -#if !defined(SWIFT_CLASS_EXTRA) -# define SWIFT_CLASS_EXTRA -#endif -#if !defined(SWIFT_PROTOCOL_EXTRA) -# define SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_ENUM_EXTRA) -# define SWIFT_ENUM_EXTRA -#endif -#if !defined(SWIFT_CLASS) -# if __has_attribute(objc_subclassing_restricted) -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# else -# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA -# endif -#endif -#if !defined(SWIFT_RESILIENT_CLASS) -# if __has_attribute(objc_class_stub) -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) -# else -# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) -# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) -# endif -#endif -#if !defined(SWIFT_PROTOCOL) -# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA -#endif -#if !defined(SWIFT_EXTENSION) -# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) -#endif -#if !defined(OBJC_DESIGNATED_INITIALIZER) -# if __has_attribute(objc_designated_initializer) -# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) -# else -# define OBJC_DESIGNATED_INITIALIZER -# endif -#endif -#if !defined(SWIFT_ENUM_ATTR) -# if __has_attribute(enum_extensibility) -# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) -# else -# define SWIFT_ENUM_ATTR(_extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# if __has_feature(generalized_swift_name) -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type -# else -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -# else -# define SWIFT_ENUM(_type, _name, _extensibility) _type _name; enum -# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) -# endif -#endif -#if !defined(SWIFT_ENUM_TAG) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_TAG enum -# else -# define SWIFT_ENUM_TAG -# endif -#endif -#if !defined(SWIFT_ENUM_FWD_DECL) -# if (defined(__cplusplus) && __cplusplus >= 201103L) || (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L) || __has_feature(objc_fixed_enum) -# define SWIFT_ENUM_FWD_DECL(_type, _name) enum _name : _type; -# else -# define SWIFT_ENUM_FWD_DECL(_type, _name) typedef _type _name; -# endif -#endif -#if !defined(SWIFT_UNAVAILABLE) -# define SWIFT_UNAVAILABLE __attribute__((unavailable)) -#endif -#if !defined(SWIFT_UNAVAILABLE_MSG) -# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) -#endif -#if !defined(SWIFT_AVAILABILITY) -# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) -#endif -#if !defined(SWIFT_AVAILABILITY_DOMAIN) -# define SWIFT_AVAILABILITY_DOMAIN(dom, ...) __attribute__((availability(domain: dom, __VA_ARGS__))) -#endif -#if !defined(SWIFT_WEAK_IMPORT) -# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) -#endif -#if !defined(SWIFT_DEPRECATED) -# define SWIFT_DEPRECATED __attribute__((deprecated)) -#endif -#if !defined(SWIFT_DEPRECATED_MSG) -# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) -#endif -#if !defined(SWIFT_DEPRECATED_OBJC) -# if __has_feature(attribute_diagnose_if_objc) -# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) -# else -# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) -# endif -#endif -#if defined(__OBJC__) -#if !defined(IBSegueAction) -# define IBSegueAction -#endif -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if !defined(SWIFT_CALL) -# define SWIFT_CALL __attribute__((swiftcall)) -#endif -#if !defined(SWIFT_INDIRECT_RESULT) -# define SWIFT_INDIRECT_RESULT __attribute__((swift_indirect_result)) -#endif -#if !defined(SWIFT_CONTEXT) -# define SWIFT_CONTEXT __attribute__((swift_context)) -#endif -#if !defined(SWIFT_ERROR_RESULT) -# define SWIFT_ERROR_RESULT __attribute__((swift_error_result)) -#endif -#if defined(__cplusplus) -# define SWIFT_NOEXCEPT noexcept -#else -# define SWIFT_NOEXCEPT -#endif -#if !defined(SWIFT_C_INLINE_THUNK) -# if __has_attribute(always_inline) -# if __has_attribute(nodebug) -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug)) -# else -# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) -# endif -# else -# define SWIFT_C_INLINE_THUNK inline -# endif -#endif -#if defined(_WIN32) -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) -#endif -#else -#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) -# define SWIFT_IMPORT_STDLIB_SYMBOL -#endif -#endif -#if !__has_feature(nullability) -# define _Nonnull -# define _Nullable -# define _Null_unspecified -#elif !defined(__OBJC__) -# pragma clang diagnostic ignored "-Wnullability-extension" -#endif -#if !__has_feature(nullability_nullable_result) -# define _Nullable_result _Nullable -#endif -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyUtilities",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__cplusplus) -extern "C" { -#endif - -#if defined(__cplusplus) -} // extern "C" -#endif -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__OBJC__) -#if __has_feature(objc_modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -#endif - -#endif // defined(__OBJC__) -#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" -#pragma clang diagnostic ignored "-Wduplicate-method-arg" -#if __has_warning("-Wpragma-clang-attribute") -# pragma clang diagnostic ignored "-Wpragma-clang-attribute" -#endif -#pragma clang diagnostic ignored "-Wunknown-pragmas" -#pragma clang diagnostic ignored "-Wnullability" -#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension" -#pragma clang diagnostic ignored "-Wunsafe-buffer-usage" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="VelodyUtilities",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - -#if defined(__OBJC__) - -#endif // defined(__OBJC__) -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#if defined(__cplusplus) -#endif -#pragma clang diagnostic pop -#endif diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/module.modulemap b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/module.modulemap deleted file mode 100644 index 3e72d2d..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/module.modulemap +++ /dev/null @@ -1,3 +0,0 @@ -module VelodyUtilities { - header "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h" -} diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/output-file-map.json b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/output-file-map.json deleted file mode 100644 index bb47608..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/output-file-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "": { - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/primary.swiftdeps" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift": { - "dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.d", - "object": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o", - "swiftmodule": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService~partial.swiftmodule", - "swift-dependencies": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swiftdeps", - "diagnostics": "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.dia" - } -} diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/primary.priors b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/primary.priors deleted file mode 100644 index 93c289a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/primary.priors and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources deleted file mode 100644 index 9f57eb5..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources +++ /dev/null @@ -1 +0,0 @@ -/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/description.json b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/description.json deleted file mode 100644 index d5292ae..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/description.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyUtilities-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyUtilities", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodyutilities" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyUtilities" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyUtilities", - "-package-name", - "velodyutilities", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodyutilities", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyUtilities" : [ - - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 deleted file mode 100644 index d8de0d0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/01/arm64e-apple-macos.swiftinterface_Collection_HashedCollections-1SAUQCC4HGG01 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 deleted file mode 100644 index a3a9228..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/03/SKDocument.h-UJ5M6QHQUV03 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 deleted file mode 100644 index 332cecc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/03/workgroup_interval.h-2B0SX7JOMGL03 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 deleted file mode 100644 index 8ab5d97..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/05/ndr.h-1IUYZ91LR1O05 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 deleted file mode 100644 index 3f7f1f4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/05/reboot.h-1G8Z7YGO7LE05 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 deleted file mode 100644 index 4ba51ab..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/09/ev.h-3ERO722AEKC09 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A deleted file mode 100644 index 9dc6451..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0A/arm64e-apple-macos.swiftinterface_Optional-3KC2HRJCBNR0A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B deleted file mode 100644 index de0d748..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0B/NSURLCache.h-E8YC47GC2S0B and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C deleted file mode 100644 index 2d7bd3c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/IOStorageCardCharacteristics.h-3TFPKF6JMAZ0C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C deleted file mode 100644 index 1c187c1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0C/locale.h-37M5KQ5GILD0C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D deleted file mode 100644 index f552bbf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0D/NSPersonNameComponentsFormatter.h-3ELJOQ19IFN0D and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F deleted file mode 100644 index 9784784..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0F/IOFDiskPartitionScheme.h-2KUAU9E6JCV0F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G deleted file mode 100644 index 8c39ec2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0G/iconv.h-YQILD3DQ7B0G and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I deleted file mode 100644 index 4131c00..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/dispatch_swift_shims.h-23CZJ5IJFD30I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I deleted file mode 100644 index ba2a57d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0I/utime.h-1AQFO1E3V930I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K deleted file mode 100644 index 472d29d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0K/event.h-2EGZMPVBO9R0K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L deleted file mode 100644 index 3865ab3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/ConditionalMacros.h-1UOKLVNIXI50L and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L deleted file mode 100644 index 7d87af8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0L/pfkeyv2.h-31T6D5QSDQO0L and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M deleted file mode 100644 index c659b9c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0M/swap.h-2TM7Y71J64U0M and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P deleted file mode 100644 index 776035c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0P/fts.h-153M1U2NA9S0P and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q deleted file mode 100644 index 2ccb007..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0Q/NSUUID.h-347RNR1ZBRT0Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R deleted file mode 100644 index 0988fed..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0R/CFTimeZone.h-248L8N0764U0R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S deleted file mode 100644 index 70eaab4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0S/vm_region.h-3V0M0MO53ZV0S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V deleted file mode 100644 index f142839..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0V/NSException.h-11FN793PSHL0V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W deleted file mode 100644 index 3fc3c57..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0W/MDSchema.h-2R614WN5VSF0W and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X deleted file mode 100644 index d92858e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/queue.h-3M0O93DQHU70X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X deleted file mode 100644 index 65fbaee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0X/search.h-1WJ2MY6WL6Y0X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z deleted file mode 100644 index b015911..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/0Z/Gestalt.h-9KV7PGS8100Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 deleted file mode 100644 index fc81374..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/CFLocale.h-34KHAYNH73H10 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 deleted file mode 100644 index 48d8ee3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/DiskArbitration.h-1ZQ8E1YXZ9W10 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 deleted file mode 100644 index 5674743..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/10/IOGraphicsInterface.h-2TM3HMCS0Z410 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 deleted file mode 100644 index 6e84472..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/DADisk.h-2AVHYM5M8RJ11 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 deleted file mode 100644 index e3acd29..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/SecCode.h-1UNXL2J2LN311 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 deleted file mode 100644 index f793c0c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/_pthread_key_t.h-J7REKIFS2F11 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 deleted file mode 100644 index 87575cf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/11/mach_debug_types.h-34D65KZJXHA11 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 deleted file mode 100644 index 7a74614..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/12/NSISO8601DateFormatter.h-U2F0TO2I2E12 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 deleted file mode 100644 index 2fb6304..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/CFDate.h-2Z3E182R7JF13 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 deleted file mode 100644 index 66750c4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/NSLock.h-1OJ2EQO3DYJ13 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 deleted file mode 100644 index e76046c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/13/port.h-17TP4PI1MPG13 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 deleted file mode 100644 index f605b23..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/15/NSScriptClassDescription.h-LN13UELPV015 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 deleted file mode 100644 index beb3eaa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/17/_string.h-2MXOCFGBJGM17 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 deleted file mode 100644 index c8fb1a1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecBase.h-2A8NGCFBXO18 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 deleted file mode 100644 index 92d491d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/18/SecCodeHost.h-DTBJXXJ6CN18 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 deleted file mode 100644 index 9cedb84..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/LSConstants.h-NLEVO9N0Y519 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 deleted file mode 100644 index 9ef1b4f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/NSUserActivity.h-3CCI1FQQUZO19 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 deleted file mode 100644 index 2fa39fd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/19/memory_object_types.h-UVO5P3IDSG19 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B deleted file mode 100644 index d63482d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/CFNumber.h-2GI3TR0JZGG1B and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B deleted file mode 100644 index f913215..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1B/if_dl.h-1MB4MFKU9AC1B and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C deleted file mode 100644 index 69ceaf3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1C/IOAppleLabelScheme.h-1WJQJS258CD1C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F deleted file mode 100644 index c0704f0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1F/CMSEncoder.h-2STBUFSK4CI1F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I deleted file mode 100644 index ecde0c5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/OSAtomicDeprecated.h-3HWZSFL5NU01I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I deleted file mode 100644 index 807c71f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecKey.h-10DRJMOZ2M01I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I deleted file mode 100644 index 74b5449..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/SecRequirement.h-3BGG3XLB2HK1I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I deleted file mode 100644 index b241d51..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/endian.h-275N2AU5UVO1I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I deleted file mode 100644 index ae9b5e5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1I/ptrauth.h-34I1VXM60711I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J deleted file mode 100644 index 315f757..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1J/mig_errors.h-1H683TTQ6QG1J and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K deleted file mode 100644 index 25f5b8d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1K/libproc.h-1JHAWQHFP0L1K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N deleted file mode 100644 index 2832534..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/IODVDTypes.h-1N2LWP68LV01N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N deleted file mode 100644 index db107cb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1N/_errno_t.h-XVIY9HBYP71N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q deleted file mode 100644 index e2b8122..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1Q/_mcontext.h-39RT06WL8DZ1Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R deleted file mode 100644 index 4315342..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1R/Script.h-2YDNU7HGDFB1R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W deleted file mode 100644 index bf7e3e8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1W/_OSByteOrder.h-22HWOXDCHH81W and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X deleted file mode 100644 index 9f59f70..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1X/curses.h-37J5JJO77QX1X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z deleted file mode 100644 index ddbd47b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/1Z/attr.h-1EPXL3OOD111Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 deleted file mode 100644 index 9a6aac6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/22/NSObjCRuntime.h-3O7B00LOOQ22 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 deleted file mode 100644 index e3587a6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/24/IOBlockStorageDevice.h-27KBSLK4C5N24 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 deleted file mode 100644 index 15a8f88..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/24/NSComparisonPredicate.h-10A3LFMUMIC24 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 deleted file mode 100644 index cad8dca..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/28/sched.h-27UNSVKV9CQ28 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 deleted file mode 100644 index 4fef39b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/29/NSClassDescription.h-3M3UVMDBJ0F29 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 deleted file mode 100644 index b05a151..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/29/_int8_t.h-FJCH36X8E629 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A deleted file mode 100644 index e8f7f6f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2A/audit_fcntl.h-1BDWLBGPOOL2A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C deleted file mode 100644 index 09d6f89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2C/tcp_var.h-FUB4WG0QYO2C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D deleted file mode 100644 index 41de67b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2D/raw_ip6.h-2AO4YNK71DY2D and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E deleted file mode 100644 index 8f5c69b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/SCSICmds_MODE_Definitions.h-2H5KVAWTANW2E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E deleted file mode 100644 index 9f42e38..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2E/in.h-3PCI9BX3JTD2E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F deleted file mode 100644 index cb48ea9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2F/util.h-Z5RXC6RCHH2F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H deleted file mode 100644 index 1b90c98..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2H/IOAudioTypes.h-3L0TTW6N1992H and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I deleted file mode 100644 index a9d8c35..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2I/NSCharacterSet.h-20DBASEMQHU2I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K deleted file mode 100644 index 154c8c4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2K/_in_addr_t.h-1C5M88AWOFG2K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O deleted file mode 100644 index 5c4dcf1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2O/_fd_def.h-36OKCH21XJ12O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q deleted file mode 100644 index 754ef57..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Q/NSHFSFileTypes.h-1SXBZ3N43ZI2Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R deleted file mode 100644 index e9d8da2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2R/vnode.h-AFN4RH1AKE2R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S deleted file mode 100644 index 4f8a13d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/IOMedia.h-14K83W673FL2S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S deleted file mode 100644 index 727e0ff..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2S/tcp_fsm.h-PENSCYF3DE2S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U deleted file mode 100644 index 44436b4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/StringCompare.h-2THXB5DLA1P2U and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U deleted file mode 100644 index ef7fa0f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/ah.h-22CI505SYDS2U and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U deleted file mode 100644 index ca6edfc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/clock.h-1NSQSYODAKA2U and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U deleted file mode 100644 index 1a9b16f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2U/exception_types.h-3VZGRYNW1M92U and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V deleted file mode 100644 index 52d7cd9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2V/audit.h-33VIZO1OS7A2V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z deleted file mode 100644 index c9b3910..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/_timeval.h-2GRP9OUKJMO2Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z deleted file mode 100644 index 5a10275..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/2Z/availability.h-1K10PYICPT12Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 deleted file mode 100644 index fc00457..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/30/if_utun.h-18M9DPB4LZ030 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 deleted file mode 100644 index 3db7277..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/31/utsname.h-3L5QPXHS0DN31 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 deleted file mode 100644 index f93985c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/IOStorageDeviceCharacteristics.h-10J104K18HF33 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 deleted file mode 100644 index e86e3e7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/arm64e-apple-macos.swiftinterface_Pointer-FK69V31FBU33 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 deleted file mode 100644 index 3e9bd95..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/33/task_info.h-3EAHQW41W633 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 deleted file mode 100644 index 27edb3c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/36/libc.h-3Q6E8N8P66036 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 deleted file mode 100644 index ba671da..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/37/_limits.h-2P3C38C86YZ37 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 deleted file mode 100644 index 59ddecf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/38/SecIdentity.h-BAVA626P0838 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 deleted file mode 100644 index f7dc6fb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/38/_in_port_t.h-2YGQAS0ID1738 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C deleted file mode 100644 index ec48d2a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3C/task_policy.h-3OV04BTXG853C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D deleted file mode 100644 index 2e22bd9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3D/_u_int.h-1CFKM8X8WHC3D and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E deleted file mode 100644 index 7fe6d84..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3E/LSOpen.h-1G6QN6I1KZD3E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F deleted file mode 100644 index 6cc497e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_int16_t.h-2DD3SJLX8QF3F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F deleted file mode 100644 index fb2179f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3F/_u_short.h-1NO7YNEHO793F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H deleted file mode 100644 index ffe050b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3H/oidscert.h-2MK6TFM7H4V3H and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J deleted file mode 100644 index 727eae4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/_blksize_t.h-2BKZYAX9MHY3J and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J deleted file mode 100644 index bd5ba39..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3J/reloc.h-RRP847M61Z3J and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K deleted file mode 100644 index 19d4de3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/CFURLEnumerator.h-3V5MTQ0RE03K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K deleted file mode 100644 index d888ae2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/ipcomp.h-28SOW1UB2SC3K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K deleted file mode 100644 index f002fd2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3K/message.h-2O1EHXO5XB33K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L deleted file mode 100644 index aec02a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/NSRange.h-2XDZCPPT9NS3L and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L deleted file mode 100644 index 9db0c86..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3L/gmon.h-2AQPNXGXLKO3L and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M deleted file mode 100644 index 5b387b6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3M/complex.h-3GL6SH5PNVX3M and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O deleted file mode 100644 index bb15053..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3O/_uint16_t.h-1Z5W20ZI4K33O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q deleted file mode 100644 index 14232cb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/_time.h-1X097TP7Y3I3Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q deleted file mode 100644 index c35d2db..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Q/if_mib.h-2B7344788R53Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T deleted file mode 100644 index cdfa612..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3T/NSScriptCommandDescription.h-1LJ6QRCPZBP3T and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U deleted file mode 100644 index 572e574..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/NSMassFormatter.h-OX7PVMSPFS3U and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U deleted file mode 100644 index 9cc36aa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3U/audit_filter.h-133ZUR56NS03U and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V deleted file mode 100644 index dc32420..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/mds_schema.h-UOKC37HD7V3V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V deleted file mode 100644 index e02c5c9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3V/sbuf.h-21NG9JMTQS13V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W deleted file mode 100644 index 7a56612..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3W/spawn.h-3ELUPCS50SA3W and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X deleted file mode 100644 index 50435d1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/NSByteOrder.h-1Q4UUU1E5XQ3X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X deleted file mode 100644 index 2ad8efe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3X/WSProtocolHandler.h-13HUIO6EBN13X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y deleted file mode 100644 index 3175c2b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Y/if_var_status.h-1RIZEO7GD8D3Y and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z deleted file mode 100644 index c32a976..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/3Z/oids.h-2GX9B4TRV803Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 deleted file mode 100644 index 8746a3f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/41/IOHIDUserDevice.h-GGXHXUKTMZ41 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 deleted file mode 100644 index e302fee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/41/OSThermalNotification.h-X6Y5JCQTKJ41 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 deleted file mode 100644 index a019c73..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/42/arm64e-apple-macos.swiftinterface_UTF8Span-1Q56ZGYJG0W42 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 deleted file mode 100644 index ee3a337..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/45/Collections.h-YCL1X3RF2645 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 deleted file mode 100644 index c970b9f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/45/vm_sync.h-11XAS68KXVF45 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 deleted file mode 100644 index 621ff54..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/48/arm64e-apple-macos.swiftinterface_Math-2G54MCZXMS848 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 deleted file mode 100644 index bf13889..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/49/arm64e-apple-macos.swiftinterface_Hashing-2Y5E25SNY9U49 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C deleted file mode 100644 index 69bc594..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/_ino64_t.h-2MSEJHZHD24C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C deleted file mode 100644 index 37376cf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4C/paths.h-35OHUH83HXU4C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D deleted file mode 100644 index 959ae33..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4D/NSError.h-190R73ZRMEA4D and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E deleted file mode 100644 index 3c7cf0a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4E/_pthread_types.h-1TFD567F6KM4E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F deleted file mode 100644 index cfcce56..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4F/ipsec.h-1UFWNX2WGBD4F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I deleted file mode 100644 index e9afed6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4I/mach_init.h-39ZBRTKZAQH4I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K deleted file mode 100644 index 61024bb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4K/IOHIDBase.h-2CKVY21TEX34K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O deleted file mode 100644 index e905484..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4O/arm64e-apple-macos.swiftinterface_Reflection-3EDLYC8T29G4O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P deleted file mode 100644 index 84212f2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4P/Folders.h-3D5V21N539V4P and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q deleted file mode 100644 index 47386d7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/alloca.h-3KNR9B03K614Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q deleted file mode 100644 index 711b99d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4Q/eti.h-1PLS9Y05IVZ4Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S deleted file mode 100644 index 82229a8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/SecDecodeTransform.h-3FCF0IVF8MM4S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S deleted file mode 100644 index 13ce346..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4S/times.h-3DSD9LSBFPE4S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V deleted file mode 100644 index 1b0f1c3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/IOHIDDevicePlugIn.h-ZW95TWHABY4V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V deleted file mode 100644 index 92afd17..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4V/group.h-BQ4V7PU4TS4V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W deleted file mode 100644 index bdf9135..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4W/_monetary.h-27K2SIKV3JU4W and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X deleted file mode 100644 index e79f069..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/CFSet.h-1YEAQLZ5WRS4X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X deleted file mode 100644 index 889c4a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/4X/ptrcheck.h-IZSXAMEY9G4X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 deleted file mode 100644 index f587a0c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/51/NSStream.h-10XG2ZRXJ8A51 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 deleted file mode 100644 index 9846567..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/51/_ino_t.h-1B8GAZR8F9X51 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 deleted file mode 100644 index 62f1933..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/53/_seek_set.h-2Q7DCTNPIZ653 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 deleted file mode 100644 index f783edd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/53/loader.h-1X1SE06YIR953 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 deleted file mode 100644 index aacb5cb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/54/CFBundle.h-11UW1ACBHPT54 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 deleted file mode 100644 index 536822a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/59/IOHIDServiceClient.h-2C32WNXQNSF59 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A deleted file mode 100644 index 1f3281a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5A/NSURLCredential.h-19L78X3TZKB5A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B deleted file mode 100644 index e64ebec..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/NSDateComponentsFormatter.h-3516WN0TN9N5B and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B deleted file mode 100644 index 9553b1d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5B/wordexp.h-GWC8E4HYTG5B and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C deleted file mode 100644 index 92f14d1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/CFHTTPMessage.h-F00EEK4Q3Y5C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C deleted file mode 100644 index a27dd7f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5C/SKAnalysis.h-2PWKEMP9AYU5C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D deleted file mode 100644 index d20239b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5D/IODVDBlockStorageDevice.h-2WSOWDKL6B45D and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G deleted file mode 100644 index 44a63bd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5G/Authorization.h-2Q3AHEDIM0P5G and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H deleted file mode 100644 index 5106054..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5H/rich_error.h-XFUZ6RRUU05H and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J deleted file mode 100644 index 4ae78ee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5J/dyld_kernel.h-3I2REXDMCW05J and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K deleted file mode 100644 index 8626382..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5K/mach_types.h-O872N0U6WL5K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N deleted file mode 100644 index d77c105..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5N/TextEncodingConverter.h-2I3TQ6KOYCB5N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O deleted file mode 100644 index 70c93b0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/IOPM.h-2HC6WQ5C3795O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O deleted file mode 100644 index a4a2f86..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5O/host_security.h-1T35MC4G7ZD5O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P deleted file mode 100644 index 712e3f1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5P/SecKeychainSearch.h-1U1JXLRKK5L5P and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q deleted file mode 100644 index 35310d5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Q/_pthread_rwlockattr_t.h-35SBEHBA2U55Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R deleted file mode 100644 index a24a655..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/SCSICmds_INQUIRY_Definitions.h-2PCO0VP9WYW5R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R deleted file mode 100644 index 029a717..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5R/thread_switch.h-2KZIZTGXPXL5R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S deleted file mode 100644 index 4992e48..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5S/CMSDecoder.h-2WG5J1VB1YS5S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T deleted file mode 100644 index 82f2da3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5T/NSOrthography.h-24EMKQ5B6FN5T and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U deleted file mode 100644 index d405781..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5U/NSTextCheckingResult.h-3UFWF4C325W5U and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W deleted file mode 100644 index 8cb65e8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5W/NSLengthFormatter.h-2T8C4AXEWR35W and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y deleted file mode 100644 index c0fc055..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/Power.h-LB5YGT15VN5Y and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y deleted file mode 100644 index 89a2019..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/5Y/igmp.h-HUO8NOK7M25Y and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 deleted file mode 100644 index 9b669ff..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/60/_sigset_t.h-294K1F4WP6O60 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 deleted file mode 100644 index affc184..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/60/thread_policy.h-3SGXCLYLA4W60 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 deleted file mode 100644 index baeeb13..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/63/UTCoreTypes.h-3B7R3GBJBHL63 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 deleted file mode 100644 index e4ddb61..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/63/lctx.h-TTO4HW6FYK63 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 deleted file mode 100644 index 7712a33..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/64/OSByteOrder.h-1VL19V5ENPY64 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 deleted file mode 100644 index fded31d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/65/processor_info.h-15SRLISK9SH65 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 deleted file mode 100644 index 66a4bd5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/67/IOGraphicsTypes.h-SNFYY6IJER67 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 deleted file mode 100644 index c98dd27..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/67/NSOperation.h-2V6SDROJXBY67 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A deleted file mode 100644 index 501f418..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6A/ifaddrs.h-3UK0GBIQEUR6A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C deleted file mode 100644 index e61e005..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6C/_mbstate_t.h-1DVIOTQDCQD6C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E deleted file mode 100644 index 9c05cfb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/IOCDMedia.h-5JWA0GRBB16E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E deleted file mode 100644 index 783e2eb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6E/UTCUtils.h-3231QKRJXJ06E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F deleted file mode 100644 index d91a944..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6F/semaphore.h-1J3YQHOUEQC6F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G deleted file mode 100644 index 13df552..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6G/exc.h-1I056SHIEW96G and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J deleted file mode 100644 index 1a7bef4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6J/NSConnection.h-1RGQXFTTNGS6J and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K deleted file mode 100644 index b98969c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6K/CFUtilities.h-SE7CIDMELV6K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M deleted file mode 100644 index 785c16d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6M/_ct_rune_t.h-31XIOF8OH9D6M and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N deleted file mode 100644 index 9b7055a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6N/NSScanner.h-3LIVYC5IXIF6N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O deleted file mode 100644 index 27789e8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6O/stab.h-389DNZNIW8S6O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q deleted file mode 100644 index a049a95..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/AIFF.h-30CIXL15JEU6Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q deleted file mode 100644 index 18346d9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Q/SecSignVerifyTransform.h-2FW1RUCY3XP6Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R deleted file mode 100644 index 862efef..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6R/IOPMLib.h-NT6IIRE4GN6R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/arm64e-apple-macos.swiftinterface_String-MXUPAHM3GH6S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/arm64e-apple-macos.swiftinterface_String-MXUPAHM3GH6S deleted file mode 100644 index 80b538a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6S/arm64e-apple-macos.swiftinterface_String-MXUPAHM3GH6S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V deleted file mode 100644 index 28ee5d0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6V/trace.h-BH2W2KQ2Z76V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W deleted file mode 100644 index 8f4ad95..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6W/AEDataModel.h-UAAU3R3EWQ6W and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X deleted file mode 100644 index 9158251..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/NSScriptCommand.h-1MYAQ7IZIXF6X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X deleted file mode 100644 index 0e845c5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/arm64e-apple-macos.swiftinterface_Collection_Array-KG2A6EPTII6X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X deleted file mode 100644 index 9265838..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6X/thread_special_ports.h-2IE9G0PSLHJ6X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z deleted file mode 100644 index a24ceaf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/6Z/IOMessage.h-18AKFAZOLEO6Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 deleted file mode 100644 index 0a9bd9a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/71/arm64e-apple-macos.swiftinterface-1RIGHMD7QX471 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 deleted file mode 100644 index 31d87a2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/74/IOUserServer.h-2MDWVJIJCK974 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 deleted file mode 100644 index 50c4999..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/74/NSInvocation.h-29O8OR8I6A74 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 deleted file mode 100644 index 6832da8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/76/IOTypes.h-1Q5LWSR1B0776 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 deleted file mode 100644 index c45b3ef..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/77/NumberFormatting.h-3MSVOKBQNSX77 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 deleted file mode 100644 index e2b8e02..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/77/SecCertificate.h-3MV54FY64L477 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 deleted file mode 100644 index 6a8ee99..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/78/thread_state.h-305FHH80RRU78 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 deleted file mode 100644 index 7c81948..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/79/SKIndex.h-3D7URRX5SRJ79 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 deleted file mode 100644 index 05db54f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/79/kern_control.h-2SI7QI7PSW179 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A deleted file mode 100644 index 7db2a09..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7A/IOHIDEventSystemClient.h-25JDPCK2KUK7A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B deleted file mode 100644 index 3f40130..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7B/_mode_t.h-18C4NLC69NB7B and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E deleted file mode 100644 index b0e5156..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/SecProtocolTypes.h-2847XVHDRJI7E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E deleted file mode 100644 index 5e048c9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7E/getopt.h-2MZF35QQ55K7E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I deleted file mode 100644 index 449759a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7I/_sigaltstack.h-VG87BB390L7I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J deleted file mode 100644 index 0d9a398..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7J/NSObjectScripting.h-1IN3S5OWD2K7J and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M deleted file mode 100644 index 4f8cb00..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7M/CFPlugIn.h-3FVRGGO0CIM7M and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N deleted file mode 100644 index 876f7b0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_off_t.h-1R4MNI1TOOB7N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N deleted file mode 100644 index 329d02e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/_u_int8_t.h-15SDJH4VT2B7N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N deleted file mode 100644 index 8ee734e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/dlfcn.h-UFVFGY4Q7H7N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N deleted file mode 100644 index bbc3cd5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7N/task.h-1V4K0U1T1BW7N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O deleted file mode 100644 index 52dbb67..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7O/scope6_var.h-W20O9CBUBZ7O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P deleted file mode 100644 index 573c4b3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/CFDictionary.h-5JUSRLM1D87P and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P deleted file mode 100644 index 80b8762..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/compact_unwind_encoding.h-DI3PLFF7597P and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P deleted file mode 100644 index 365fcd7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7P/processor.h-PDRCVU10DT7P and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q deleted file mode 100644 index 3bb906e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/clonefile.h-1OUSNSG0BGV7Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q deleted file mode 100644 index 4ba95d3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7Q/runtime.h-1UD4NLJH17A7Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T deleted file mode 100644 index 9979885..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7T/NSRunLoop.h-3HXT3S0ZCLX7T and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X deleted file mode 100644 index 1cacce4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/7X/object.h-2F7G01VWW9R7X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 deleted file mode 100644 index 87c0d82..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/80/SecStaticCode.h-2015KPJGM0180 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 deleted file mode 100644 index c8d1f6e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/80/syslog.h-1KB9L7Z0DJ680 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 deleted file mode 100644 index 86079b7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/81/workgroup_base.h-16YDO2A038L81 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 deleted file mode 100644 index 13e7a8d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/82/SecCustomTransform.h-1L9L4VVPQOS82 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 deleted file mode 100644 index b6ce923..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/83/TextEncodingPlugin.h-3C228Q7ARL583 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 deleted file mode 100644 index eb679f2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/83/fixup-chains.h-21NOIHZKD6X83 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 deleted file mode 100644 index 210f96b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/84/TextCommon.h-38JKQ706QSV84 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 deleted file mode 100644 index 92877c9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/85/IOHIDShared.h-29636WKI6KJ85 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 deleted file mode 100644 index d572318..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/86/NSAutoreleasePool.h-3SSODOMXBKN86 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 deleted file mode 100644 index 8bad9b8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/86/if_media.h-1P19KQF3U7086 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 deleted file mode 100644 index 5916c8b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/87/error.h-2E3VM5ENU9X87 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 deleted file mode 100644 index 5d85a0e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/88/if_arp.h-2YI9LB5S3AN88 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 deleted file mode 100644 index 416befd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/88/in_systm.h-17Z7ZWM3ZU888 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A deleted file mode 100644 index c94ad0f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8A/memory_entry.h-3QBREZKMASK8A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C deleted file mode 100644 index d107423..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/DiskSpaceRecovery.h-3G4XJ1LFWV08C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C deleted file mode 100644 index 401c3f6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8C/vmparam.h-3DGE2JMC2XE8C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E deleted file mode 100644 index 895d6e5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/fasttrap_isa.h-2BNMSZPT2BY8E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E deleted file mode 100644 index c5e43eb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/signal.h-2F43SEKSS9Y8E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E deleted file mode 100644 index b038767..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8E/sockio.h-2MN1EG2TM2Y8E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F deleted file mode 100644 index 35b4812..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8F/NSNotificationQueue.h-12C24153HMI8F and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H deleted file mode 100644 index 8484583..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8H/aio.h-1A1CCXB38AF8H and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I deleted file mode 100644 index c7be029..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8I/cssmcspi.h-1NQ3IUPVIT08I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N deleted file mode 100644 index f7f26c3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8N/NSByteCountFormatter.h-1CJ2ZUZOEB48N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q deleted file mode 100644 index ebc4f3b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8Q/NSTask.h-191JHJIHGUH8Q and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R deleted file mode 100644 index 5fcfa30..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/USBSpec.h-3QKO824IYZB8R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R deleted file mode 100644 index 44803c8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8R/param.h-O9K52O68YF8R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S deleted file mode 100644 index 07dcd49..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/SecTransformReadTransform.h-1QA8D1F6NEJ8S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S deleted file mode 100644 index 2bf1169..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/__stdarg_va_list.h-3TL5I7T0WTP8S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S deleted file mode 100644 index c6876b2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_regex.h-3B0MA6UHHEK8S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S deleted file mode 100644 index e4b1b5e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8S/_timeval32.h-3BK84NDHM3F8S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V deleted file mode 100644 index 0c328f0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8V/_nl_item.h-FETDID176N8V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W deleted file mode 100644 index 54ebf16..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8W/proc.h-18TTM6SSWF38W and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y deleted file mode 100644 index f2bc86d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/8Y/NSGarbageCollector.h-38BE39F4S7I8Y and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 deleted file mode 100644 index 262ba18..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/91/source.h-155R3BZNIGD91 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 deleted file mode 100644 index fad8d28..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/92/NSXMLNodeOptions.h-27KT36JPDVC92 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 deleted file mode 100644 index 4ece05c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/93/IOFramebufferShared.h-3F2ELBC5Z1O93 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 deleted file mode 100644 index 6749e37..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/94/_filesec_t.h-1FTX44XP15T94 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 deleted file mode 100644 index 5861624..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/96/unistd.h-RIG71GMZS496 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 deleted file mode 100644 index 70fa602..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/97/_wchar.h-2GKKTOPDETU97 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 deleted file mode 100644 index b4dbd3f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/98/arm64e-apple-macos.swiftinterface_Bool-2PQVWDP4E7C98 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 deleted file mode 100644 index 9fe3fa1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/98/audit_session.h-111AOG9Q2LB98 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 deleted file mode 100644 index 380db15..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/99/_select.h-35KN8ULHARG99 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 deleted file mode 100644 index f9b4d06..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/99/session.h-1R8A9V7N1BE99 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A deleted file mode 100644 index 5047eb6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/_ctermid.h-2E60E326LR09A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A deleted file mode 100644 index 22b3249..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9A/mount.h-2UCQUFW2AI49A and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E deleted file mode 100644 index 1eed699..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFArray.h-10XQB1ZZ9IZ9E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E deleted file mode 100644 index f3f1059..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/CFStringTokenizer.h-3JB5LUZ9HPF9E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E deleted file mode 100644 index 8cf3264..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/_dev_t.h-XIJEJLYJZC9E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E deleted file mode 100644 index 86ea927..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/byte_order.h-30P4DS09IU9E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E deleted file mode 100644 index ad13c05..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9E/libgen.h-3M0M694T7V9E and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G deleted file mode 100644 index 576be06..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9G/DriverServices.h-OSPQ971A2G9G and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H deleted file mode 100644 index c209f8f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/netdb.h-2653GAEVR0R9H and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H deleted file mode 100644 index f8e5d53..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9H/xattr.h-30Q3YJAADLU9H and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I deleted file mode 100644 index 26ad779..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/_u_int32_t.h-1JVW03YWX3V9I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I deleted file mode 100644 index 0a6ee79..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9I/processor_info.h-3EIHFSB1K7P9I and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J deleted file mode 100644 index 428d376..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9J/NSPointerFunctions.h-2IWCEIR7JX29J and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K deleted file mode 100644 index dbc2c54..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9K/_fsfilcnt_t.h-2J4SI2VERAE9K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L deleted file mode 100644 index 3e070be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9L/NSURLDownload.h-23B748EQE709L and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N deleted file mode 100644 index d66e284..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/NSAppleEventDescriptor.h-1TR8QR09P459N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N deleted file mode 100644 index 54b874c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9N/SecProtocolObject.h-21Q5FUF75NE9N and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O deleted file mode 100644 index c838be9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9O/__endian.h-34LHCDVMO659O and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R deleted file mode 100644 index f361f1b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/CFNumberFormatter.h-FO0F8XSBRE9R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R deleted file mode 100644 index 389e65a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9R/SecEncodeTransform.h-34R3BZ3E4189R and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S deleted file mode 100644 index 2658a1a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9S/audit_errno.h-2KEF3J00QY89S and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y deleted file mode 100644 index 82ea224..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Y/CFTree.h-2C9ONK16L6M9Y and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z deleted file mode 100644 index 60bc4a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/NSDateFormatter.h-18TDK00KYHS9Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z deleted file mode 100644 index 6091df7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/OSUtils.h-3IZAJVO6HA89Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z deleted file mode 100644 index 277e767..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/9Z/policy.h-1SY1HQKDKLM9Z and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 deleted file mode 100644 index 9bfdcee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A0/MDLabel.h-DMLLZAN8ZYA0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 deleted file mode 100644 index 7d9bcb4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/IOBDMedia.h-2YUF9X8AYETA1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 deleted file mode 100644 index cb0241c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/lockgroup_info.h-2U81RZ1RXVVA1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 deleted file mode 100644 index e25aea0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A1/semaphore.h-1UU911U8ERQA1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 deleted file mode 100644 index ddf97ef..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/FSEvents.h-3BJCGK1LF4VA2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 deleted file mode 100644 index 746b114..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A2/NSObject.h-2FD2G4OJCPLA2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 deleted file mode 100644 index e9ee484..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/IOUSBHostFamilyDefinitions.h-37DTDPZO1MFA3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 deleted file mode 100644 index a0dc8aa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/A3/MacLocales.h-21KP0YI04FSA3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB deleted file mode 100644 index f6b2eb6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AB/NSProxy.h-RCDZ8V4CUAB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD deleted file mode 100644 index 06e7645..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AD/object.h-237CW2G6Z7VAD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF deleted file mode 100644 index 5a519ac..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AF/__stddef_nullptr_t.h-PZI2JELPAZAF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG deleted file mode 100644 index a823a70..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/NSDateIntervalFormatter.h-34X0DGQDIS4AG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG deleted file mode 100644 index 14543cf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/_types.h-21IPYP8FLW8AG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG deleted file mode 100644 index 717c3b1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AG/semaphore.h-1QI41OLMIDUAG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ deleted file mode 100644 index 2e2e836..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/CSIdentity.h-3C7K4MQRFFZAJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ deleted file mode 100644 index c76c0a2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AJ/SecProtocolMetadata.h-18QAK2FQ1U7AJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL deleted file mode 100644 index 343d386..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AL/_wchar.h-9ZWNFPO24ZAL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM deleted file mode 100644 index 78f5d23..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/CFFileDescriptor.h-3IIQXHFPVXKAM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM deleted file mode 100644 index dc78a0a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/kernel_types.h-1FG78GBH6B2AM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM deleted file mode 100644 index 84bc5cd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AM/objc-sync.h-1DKQIQ3POOTAM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO deleted file mode 100644 index a4228c1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AO/_symbol_aliasing.h-3C1YA7SQ2HZAO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP deleted file mode 100644 index 2c2a455..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AP/cssmkrapi.h-XCQTZ684B2AP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ deleted file mode 100644 index 5393ad2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/CFHost.h-1XJ600SDU2OAQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ deleted file mode 100644 index ab82173..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/qos.h-37MPUDVKMUTAQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ deleted file mode 100644 index 4d2ac38..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AQ/shared_region.h-FX2ENJ5Z08AQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT deleted file mode 100644 index 838c4be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDecimalNumber.h-1AJTYMQJH0WAT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT deleted file mode 100644 index 01a0389..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/NSDistantObject.h-1D6AH6Z232VAT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT deleted file mode 100644 index d250f5b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/___wctype.h-2XB1AZ4KMF4AT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT deleted file mode 100644 index 079634e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AT/host_priv.h-2GED8E99974AT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU deleted file mode 100644 index 3072fcc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/AvailabilityInternalLegacy.h-221GLLEDEOSAU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU deleted file mode 100644 index f6e6108..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AU/kext_net.h-3KZ0YLB7FTHAU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW deleted file mode 100644 index 3562423..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/NSXMLDTD.h-2P7740UK7AW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW deleted file mode 100644 index d66edef..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AW/arm64e-apple-macos.swiftinterface_Collection_Type-erased-4EYB56CXWDAW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX deleted file mode 100644 index 50dd6d3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_ctype.h-3QHDPFDI5XNAX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX deleted file mode 100644 index ee7d1cc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AX/_mb_cur_max.h-3FLV9VS5YG2AX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY deleted file mode 100644 index fa91362..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AY/ipc_info.h-23ZHG8MTTE2AY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ deleted file mode 100644 index ae2fbfe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/AEObjects.h-3HIVYU7NTGAAZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ deleted file mode 100644 index 529c005..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/AZ/netport.h-394X6CW6TPJAZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 deleted file mode 100644 index b0fed79..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/_stdio.h-3KSUAY6F95VB2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 deleted file mode 100644 index c08b2f5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B2/host_special_ports.h-341ETNLDLHNB2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 deleted file mode 100644 index 17d43a1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B4/_regex.h-36II7NM3KBCB4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 deleted file mode 100644 index 9803275..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B5/__stdarg___gnuc_va_list.h-2K47H1YNTLGB5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 deleted file mode 100644 index 7f5924b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B8/MDQuery.h-2O810ZEXOJOB8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 deleted file mode 100644 index 18b1c54..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/B9/listener.h-1SR9H0EFS4GB9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA deleted file mode 100644 index 276b65c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/SecItem.h-34SR8IGMKEDBA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA deleted file mode 100644 index de2efa3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BA/kdebug.h-30T2X8M5KH0BA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB deleted file mode 100644 index 07f3f83..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/IOFireWireFamilyCommon.h-21L5AKKXY28BB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB deleted file mode 100644 index 09633c1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BB/NSUserScriptTask.h-WWMQRUJJAXBB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC deleted file mode 100644 index c96ce93..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BC/SecAsn1Templates.h-36N8SFSW8AWBC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD deleted file mode 100644 index 316809e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/CFAvailability.h-3PFR9U6CO1PBD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD deleted file mode 100644 index 5a9d7e1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/execinfo.h-3AQ707IKQW4BD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD deleted file mode 100644 index 02de3fa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BD/libbsm.h-2GPMSUTJR53BD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE deleted file mode 100644 index 8fb64f8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BE/boolean.h-99X76WAHN2BE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG deleted file mode 100644 index 754bbdc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BG/IOBSD.h-1CLW1S1VTWBBG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH deleted file mode 100644 index 1aa2aa5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/NSNumberFormatter.h-XBKBIW5KUFBH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH deleted file mode 100644 index 46c4a43..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BH/form.h-2CVR60VF6B1BH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ deleted file mode 100644 index bb27f4b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/fenv.h-3TCE6HUK98BBJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ deleted file mode 100644 index f9bab7e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BJ/in_var.h-Z0MTHEEDLZBJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK deleted file mode 100644 index c0db6bf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BK/arch.h-K1C56A9FQ1BK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL deleted file mode 100644 index 9ef7f7c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_endian.h-3VEJOS27HZWBL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL deleted file mode 100644 index 9b946c5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BL/_wctype_t.h-3VBU123F7P4BL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP deleted file mode 100644 index 50f0a18..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BP/IODVDMediaBSDClient.h-16Q6FKA1X4HBP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ deleted file mode 100644 index 8151f91..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/_types.h-1412OVHMI6BBQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ deleted file mode 100644 index 074a126..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BQ/in_pcb.h-1VRPO32NZDRBQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR deleted file mode 100644 index 462e4ba..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BR/_wctype.h-299PA6C3L06BR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS deleted file mode 100644 index 1f05727..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BS/math.h-3A651J0PVEZBS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT deleted file mode 100644 index 4c7c78b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/TextUtils.h-2P09A4HPHNWBT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT deleted file mode 100644 index 894d506..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BT/pipe.h-3GCGI1Z2L30BT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV deleted file mode 100644 index d23b640..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BV/SecTrustedApplication.h-2T0ZNA8MMUQBV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX deleted file mode 100644 index 9adbb60..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BX/fat.h-133L3SUC57YBX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY deleted file mode 100644 index 467ff86..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSOrderedCollectionDifference.h-1QQKYUCEE27BY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY deleted file mode 100644 index e889031..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/NSScriptWhoseTests.h-30KBV5Q1AABBY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY deleted file mode 100644 index e9baa43..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/BY/_ucontext64.h-1SBDKD4NF6HBY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 deleted file mode 100644 index f0ae61d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C2/IntlResources.h-2FECDZWX1K4C2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 deleted file mode 100644 index 7c9d232..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/NSSortDescriptor.h-FREIKXX7K1C4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 deleted file mode 100644 index ffa1f52..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/SecTask.h-3POAWFJVHWJC4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 deleted file mode 100644 index e8551d6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C4/arm64e-apple-macos.swiftinterface_Collection-2UX4JLKDVRIC4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 deleted file mode 100644 index 5e21b19..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/IONetworkInterface.h-2YQVEU0DI66C6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 deleted file mode 100644 index 4f21474..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/__stdarg_va_arg.h-1RA1414779JC6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 deleted file mode 100644 index 06eee31..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C6/peer_requirement.h-2NYC3JDHI32C6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 deleted file mode 100644 index 9f6eef0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/SCSICmds_REPORT_LUNS_Definitions.h-30Y1PH0EQMRC7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 deleted file mode 100644 index 2c2afe3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/C7/runetype.h-20QSR1B4D55C7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB deleted file mode 100644 index f4aa8bb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/IOHIDEventServiceKeys.h-3GMVHCNZWVKCB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB deleted file mode 100644 index fabdbfd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CB/NSScriptKeyValueCoding.h-21XCYZP206RCB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC deleted file mode 100644 index ba56bee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CC/posix_shm.h-1O4FHSGOLPDCC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD deleted file mode 100644 index 5a67bda..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CD/cssmerr.h-3DE6IECSWOOCD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF deleted file mode 100644 index 7991a14..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CF/NSURLSession.h-DJFG9CU336CF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI deleted file mode 100644 index f3df3a0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/IconStorage.h-271T7BAETX1CI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI deleted file mode 100644 index 2a0f007..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CI/rpc.h-31XRH0XK7IECI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK deleted file mode 100644 index 08bfafe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CK/net_kev.h-3K89FWGABXCK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL deleted file mode 100644 index 6015d1a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CL/IOKitLib.h-2CCL5UZTRB5CL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN deleted file mode 100644 index 0ed72f0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/NSDictionary.h-3G04FQ6I9P0CN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN deleted file mode 100644 index 7d378d8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CN/paths.h-3JSBS6LNU8OCN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP deleted file mode 100644 index 96aafdd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/IOEthernetInterface.h-BO9GJSMKJNCP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP deleted file mode 100644 index 11ca7b2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CP/audit_internal.h-2RULHCQ8VFVCP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ deleted file mode 100644 index ef1aaa4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CQ/esp.h-28TS0LZZJLCCQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR deleted file mode 100644 index c5bbb59..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/OSMessageNotification.h-32QJYCZB4CACR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR deleted file mode 100644 index fda3d92..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/_ucontext.h-Y29RY7RRL3CR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR deleted file mode 100644 index e202544..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CR/device_types.h-3B2Z7K0WZ9JCR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT deleted file mode 100644 index 374489a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/CFBitVector.h-1FD2KHO4VIICT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT deleted file mode 100644 index a0ce498..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/_printf.h-3H2RWKIUFKGCT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT deleted file mode 100644 index 47a0e5a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CT/audit_triggers_types.h-2L4OF4CQZRJCT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV deleted file mode 100644 index 500a147..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CV/NSInflectionRule.h-3LKSIFBP182CV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW deleted file mode 100644 index 1dc59a0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/select.h-T7CUQ5R9BXCW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW deleted file mode 100644 index 1538f7b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CW/uio.h-1ENIZF8XZ4PCW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX deleted file mode 100644 index ce3fbfb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_ptrdiff_t.h-15AB8YR486XCX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX deleted file mode 100644 index 966c6b0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CX/_stdio.h-3BQ2PABJXY3CX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY deleted file mode 100644 index cf36aae..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CY/arm64e-apple-macos.swiftinterface_Math_Integers-2TUM15YSRBBCY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ deleted file mode 100644 index abf6f84..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/CZ/getsect.h-3L1PJXQ9H6SCZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 deleted file mode 100644 index ae76537..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D0/copyfile.h-2THM36MVKX9D0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 deleted file mode 100644 index 1067b53..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D3/NSURLError.h-3GGF5QZS0PID3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 deleted file mode 100644 index c3239c1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/AppleUSBDefinitions.h-ZNDFXV4YY1D4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 deleted file mode 100644 index 17871d5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D4/USB.h-64YVBV0ESPD4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 deleted file mode 100644 index 984656c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D8/SecTrustSettings.h-37DLG16F2S6D8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 deleted file mode 100644 index 06b0431..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/D9/IOVideoDeviceShared.h-1VJYYNF4EVLD9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB deleted file mode 100644 index a3fae8d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DB/NSNull.h-LDIPWIO4QVDB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC deleted file mode 100644 index daa2ba6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DC/__stddef_max_align_t.h-26UO3533DQCDC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD deleted file mode 100644 index 559341b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DD/msg.h-15G86I3CGJ6DD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE deleted file mode 100644 index ce97f80..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DE/reloc.h-GS9FJF26TNDE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF deleted file mode 100644 index 7955fa0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/NSNotification.h-3P171RR2JS7DF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF deleted file mode 100644 index ec2aa3f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DF/mbuf.h-3I2EV0L4J6NDF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG deleted file mode 100644 index f2428d9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/IOPartitionScheme.h-2RR3XQ35F8KDG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG deleted file mode 100644 index 026c3fb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/Multiprocessing.h-RHXB60YUHEDG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG deleted file mode 100644 index 8793a3b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/_uuid_t.h-22MPX5GE39VDG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG deleted file mode 100644 index bd2c21b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DG/host_info.h-HQ1FYDZZJXDG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH deleted file mode 100644 index 1311245..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DH/_SwiftConcurrency.h-3TLE8ZVCLBTDH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI deleted file mode 100644 index ea5e317..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DI/CFCalendar.h-18028BEAD36DI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ deleted file mode 100644 index 7043717..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IOGraphicsLib.h-1XS1PDD2DO7DJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ deleted file mode 100644 index 3c16be4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DJ/IONetworkMedium.h-7WVW0TC160DJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL deleted file mode 100644 index 7e5a047..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DL/_intptr_t.h-RZ0HBUYH6XDL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM deleted file mode 100644 index 48c83c9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DM/clock.h-HFWTDB6NDVDM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN deleted file mode 100644 index 205dcc8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DN/ioctl_compat.h-375X7MJC9BXDN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO deleted file mode 100644 index 62c96cb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/NSMetadata.h-12O84AWT3FDO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO deleted file mode 100644 index e623db9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DO/conf.h-317NT1SEZQEDO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR deleted file mode 100644 index 20f82b8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DR/thread_status.h-1PZN75K7JXQDR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS deleted file mode 100644 index 73b6eb3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DS/_stdlib.h-299RX4I3MYLDS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU deleted file mode 100644 index 282cef0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DU/stdio.h-NT0UHZLYG8DU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX deleted file mode 100644 index b5c5ae5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/NSPredicate.h-3E7RE97LIL1DX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX deleted file mode 100644 index de5325a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DX/__stddef_ptrdiff_t.h-39NWF8PN7CRDX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY deleted file mode 100644 index e60f47a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/hv_kern_types.h-P8GOKNM4JLDY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY deleted file mode 100644 index 3274f0b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/DY/vm_param.h-21DLWLXTEKZDY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 deleted file mode 100644 index c50b37c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E0/timeb.h-2RZ2G3VDUMTE0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 deleted file mode 100644 index e8541dd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E1/IOHIDTypes.h-KA6WCK6QGRE1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 deleted file mode 100644 index 7950a47..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/IOEthernetController.h-1YEATH4UD1ZE3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 deleted file mode 100644 index 384a5ea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E3/acl.h-3H4OP1WYTI5E3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 deleted file mode 100644 index 492a399..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E4/vm_prot.h-2LI8NHRZ8VDE4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 deleted file mode 100644 index 367a260..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E6/NSExpression.h-3N4ZOVUIU7OE6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 deleted file mode 100644 index f3765fc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E7/NSExtensionRequestHandling.h-801JMFB95JE7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 deleted file mode 100644 index 86faf28..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/CFProxySupport.h-14G01IQ2A9TE9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 deleted file mode 100644 index 5ce3e2c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/E9/_u_char.h-19NIDV8R59SE9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA deleted file mode 100644 index da4615d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EA/un.h-LKAWW0JZZTEA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED deleted file mode 100644 index 175ce69..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ED/IONetworkData.h-28RLLM2V1Z3ED and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF deleted file mode 100644 index f8a6eae..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/OSAtomicQueue.h-28N3WS6G0D0EF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF deleted file mode 100644 index 335af7b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EF/__stddef_null.h-XEL48OJUZLEF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH deleted file mode 100644 index 1ea602c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EH/NSScriptExecutionContext.h-3CBVVQZE88LEH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI deleted file mode 100644 index 887241f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EI/reloc.h-V3RFK00JY8EI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK deleted file mode 100644 index de31f3f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EK/_useconds_t.h-2Z8XR3FJX83EK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL deleted file mode 100644 index 30fec6b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EL/IOHIDQueue.h-314O66LYEE4EL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM deleted file mode 100644 index 93257b4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/SecProtocolOptions.h-GK1VQGMXSCEM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM deleted file mode 100644 index 854a2e4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EM/_pthread_condattr_t.h-3PQGAOJLEFEEM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN deleted file mode 100644 index ada09ad..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EN/IOStorage.h-2N2IZJTLFCKEN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP deleted file mode 100644 index 25bf52d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/limits.h-3Q3RV0WX8R2EP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP deleted file mode 100644 index d940b08..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EP/mach_time.h-21ZOVGZTJN7EP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ deleted file mode 100644 index 7a101c9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EQ/bootp.h-O6YHV3GA91EQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER deleted file mode 100644 index 7c04534..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/AEHelpers.h-35CWBC42S5ZER and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER deleted file mode 100644 index ba23380..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/NSProcessInfo.h-3UOW9OOESVER and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER deleted file mode 100644 index 352bfd1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ER/utils.h-2ZU9XIT0G7LER and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET deleted file mode 100644 index eea6ca3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ET/arm64e-apple-macos.swiftinterface-3BWVKIR740NET and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU deleted file mode 100644 index 4f7dfc9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EU/NSSpellServer.h-SOVCR17P4GEU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV deleted file mode 100644 index 22d127b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EV/NSPersonNameComponents.h-1E4YRUKQUKEV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW deleted file mode 100644 index 6cf7918..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/EW/NSValue.h-2SMKEMAZRZREW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 deleted file mode 100644 index b8b046b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/WSMethodInvocation.h-2F9C095H0OUF0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 deleted file mode 100644 index d1b83c0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/_strings.h-PN2XMI1TXF0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 deleted file mode 100644 index 992a7de..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F0/readpassphrase.h-2UTB1XPODPXF0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 deleted file mode 100644 index 200679a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/_structs.h-3FSW98T3MEBF2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 deleted file mode 100644 index 1214f89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F2/mach_voucher.h-3FX41Y9XG4EF2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 deleted file mode 100644 index 74e8b16..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/IOCFPlugIn.h-PSP1P00NTIF5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 deleted file mode 100644 index 8e6eccb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/arm64e-apple-macos.swiftinterface_Assert-1I2E2BDJC3WF5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 deleted file mode 100644 index 76e8da3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F5/mach_voucher_types.h-NI5N6FBFYFF5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 deleted file mode 100644 index 91690d9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F6/sys_domain.h-XVUF2W07LCF6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 deleted file mode 100644 index 99b3bea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/NSKeyedArchiver.h-3T4KL12GJ7F7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 deleted file mode 100644 index e466016..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/_guid_t.h-3EHDQN3U7L2F7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 deleted file mode 100644 index bbc9666..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F7/limits.h-KYDI3UFR3ZF7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 deleted file mode 100644 index d7a9428..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F8/tcp.h-3GHXSIK6KFCF8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 deleted file mode 100644 index 5c4fb89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/F9/menu.h-2LAIBWU4H0JF9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA deleted file mode 100644 index 4b53d2d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FA/IOFireWireStorageCharacteristics.h-2Z18NKUKVJ9FA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD deleted file mode 100644 index 4c1f051..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FD/_rune_t.h-2EX2ELYQ68HFD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE deleted file mode 100644 index d649bdc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/IOLLEvent.h-ZATDCJMZTJFE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE deleted file mode 100644 index 2ca274e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FE/arm64e-apple-macos.swiftinterface_C-1EEFPAQIANPFE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI deleted file mode 100644 index 7a07368..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FI/ipc.h-3B0XWDGCRQ8FI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK deleted file mode 100644 index 463cf3b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFHTTPStream.h-26CN1ZYB7UZFK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK deleted file mode 100644 index 3a73af2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/CFMessagePort.h-2QTSARUA6LVFK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK deleted file mode 100644 index 7101aaa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FK/xpc.h-23Y6JINMAEOFK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM deleted file mode 100644 index 5eebe0c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FM/CFBinaryHeap.h-2NEFVOGQ5Y9FM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN deleted file mode 100644 index c4b21a9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FN/_uint32_t.h-2ACO9Z7SYNJFN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ deleted file mode 100644 index ce8050f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FQ/IOAccelClientConnect.h-2TX9OB2WUMWFQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS deleted file mode 100644 index ce4f65a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/IOPMLibDefs.h-16L4R99W4C4FS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS deleted file mode 100644 index a096cee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_blkcnt_t.h-3OAKIIP1GR1FS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS deleted file mode 100644 index f7f04f1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FS/_uint64_t.h-2YO6WHJTFP8FS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV deleted file mode 100644 index a64a372..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FV/qos.h-1AFKC4JYQ5RFV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW deleted file mode 100644 index fe8ab82..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/_malloc.h-V0R2NNV7GWFW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW deleted file mode 100644 index 43bf864..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FW/types.h-KYSQM1DL0TFW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX deleted file mode 100644 index 2b06ede..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/AuthSession.h-BPF6E00VGEFX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX deleted file mode 100644 index 22887eb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FX/vm_purgable.h-ZYVYIERNZAFX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY deleted file mode 100644 index dff0a8e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FY/crt_externs.h-2ESQD98U3O8FY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ deleted file mode 100644 index c9eeaf2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/AvailabilityVersions.h-1ZKBII1HQ35FZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ deleted file mode 100644 index 6c79289..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/FZ/nlist.h-1B4UDTW9VPLFZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 deleted file mode 100644 index da6cae3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G0/_param.h-ZWE95B89NYG0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 deleted file mode 100644 index c6a9e0b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G1/IOHIDEventServiceTypes.h-17AG9XXTS9TG1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 deleted file mode 100644 index 6384e93..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/SecPolicy.h-3CLBUNHZ2UQG3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 deleted file mode 100644 index 32adb89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/Timer.h-1NUJLV8YQ95G3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 deleted file mode 100644 index ecd3234..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G3/kern_return.h-DD3PH6O8C5G3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 deleted file mode 100644 index 55d79b3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G4/SCSICmds_READ_CAPACITY_Definitions.h-2OJBM5HY6XWG4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 deleted file mode 100644 index a8d1b82..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G6/_inttypes.h-F4RGBLYOHSG6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 deleted file mode 100644 index c4ae13f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/_int16_t.h-3UIVR2BRPCHG7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 deleted file mode 100644 index 31da2aa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G7/errno.h-HT34MMPF0FG7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 deleted file mode 100644 index 167736c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G8/fsgetpath.h-15Y9F097OMFG8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 deleted file mode 100644 index 33aaa89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/G9/workloop.h-1YSUXMQYKAHG9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB deleted file mode 100644 index a63ea11..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/CFDateFormatter.h-33MAWTA4LBBGB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB deleted file mode 100644 index c3cea85..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GB/IOSCSIMultimediaCommandsDevice.h-2F71F3KH0X5GB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC deleted file mode 100644 index 4f0a799..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/fnmatch.h-3N5D29XH1OOGC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC deleted file mode 100644 index d15fd65..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GC/mach_host.h-21BDHOWGA9LGC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE deleted file mode 100644 index 307ca10..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/_fsobj_id_t.h-CS7Y49BG1FGE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE deleted file mode 100644 index b738694..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GE/xattr_flags.h-2HFOPRHG8GJGE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF deleted file mode 100644 index 560a27d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/CFHTTPAuthentication.h-1SVORXYF5H2GF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF deleted file mode 100644 index 3a10808..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/arm64e-apple-macos.swiftinterface-3G133JS5QKBGF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF deleted file mode 100644 index f6b55dc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GF/pwd.h-OOJQV03Y2JGF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG deleted file mode 100644 index 321031a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GG/CFStream.h-1TJ8NJAHBBAGG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH deleted file mode 100644 index d4ee4c5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GH/resource.h-PLII4B1BJBGH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI deleted file mode 100644 index 9522de4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/IOBlockStorageDriver.h-3FA2ISLZP2GI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI deleted file mode 100644 index 45a79ea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/_vnode_t.h-3U4OBQLN4MDGI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI deleted file mode 100644 index 1efd21a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GI/x509defs.h-19VGZEXYYIVGI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL deleted file mode 100644 index 36238e1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GL/sysdir.h-S0RTNC1I5AGL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN deleted file mode 100644 index a126530..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GN/NSPropertyList.h-6T4R04DA0UGN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO deleted file mode 100644 index 1a3e01d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/MixedMode.h-1QKL3LD3MZ4GO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO deleted file mode 100644 index 4bff99e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/NSAffineTransform.h-1MCC90R7QI1GO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO deleted file mode 100644 index c6eb519..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/___wctype.h-3EPX3F11OVVGO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO deleted file mode 100644 index b0dbe28..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GO/debug.h-281ZUAE1KC2GO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ deleted file mode 100644 index f3c6c4c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GQ/CFError.h-2TKAIT4FQ8IGQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS deleted file mode 100644 index d6c5312..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GS/Aliases.h-33GMWE44FK9GS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT deleted file mode 100644 index 6a7ab98..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/IOATAStorageDefines.h-1PZ35E52MYXGT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT deleted file mode 100644 index 455036b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GT/appleapiopts.h-3ITOOK4VH6MGT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY deleted file mode 100644 index 488da5c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/GY/IOCFSerialize.h-1LFLK0N8158GY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 deleted file mode 100644 index ef15942..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/IONetworkLib.h-3S7A1DOUZ86H0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 deleted file mode 100644 index ff6802a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H0/time_value.h-1HMCIU6YXZ9H0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 deleted file mode 100644 index c8b433f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/IOReturn.h-MHLV6IRR78H3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 deleted file mode 100644 index 5c2c782..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_OSByteOrder.h-1HPWPR6ZTZ2H3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 deleted file mode 100644 index 62cbd3f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H3/_ssize_t.h-2CDSKK2UNDGH3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 deleted file mode 100644 index 0da1314..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/OSTypes.h-2K0HJNPP8EAH4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 deleted file mode 100644 index 7567236..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H4/ucred.h-34T3WQAWUBHH4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 deleted file mode 100644 index de2c99c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H5/OSDebug.h-F3PWZOY7ZHH5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 deleted file mode 100644 index dc4a98d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H6/IOHIDElement.h-NVV49X8V36H6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 deleted file mode 100644 index 77893ea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/NSPortMessage.h-2CUJB9AHXWOH7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 deleted file mode 100644 index 979dbbc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/OSByteOrder.h-LIHQEK988PH7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 deleted file mode 100644 index 66a6b05..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H7/arm64e-apple-macos.swiftinterface_Collection_Lazy_Views-31UGSO8191XH7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 deleted file mode 100644 index 1f2bc14..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H8/ar.h-2758Q8E8XG9H8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 deleted file mode 100644 index 262743a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/CSIdentityAuthority.h-2E2IBZQ2ZI1H9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 deleted file mode 100644 index 1c0ab5e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/H9/mach_param.h-SL78NQGZGVH9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA deleted file mode 100644 index e572bd4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HA/wait.h-5M8QVLO773HA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC deleted file mode 100644 index fb0933b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HC/event_status_driver.h-1XWQBHLINH0HC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG deleted file mode 100644 index a81ece2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HG/arm64e-apple-macos.swiftinterface_Playground-200G2GK961RHG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH deleted file mode 100644 index f28aaef..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/NSZone.h-2CC0G4HGMM5HH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH deleted file mode 100644 index b9bd040..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/clock_reply.h-1TBZ0N44AX7HH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH deleted file mode 100644 index 75dd34f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HH/sysctl.h-JLXMROS93RHH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ deleted file mode 100644 index 2eaee68..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HJ/_malloc_type.h-HAROD4Q7OFHJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM deleted file mode 100644 index b4802a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/SCSICommandOperationCodes.h-2OGDUAFWYRZHM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM deleted file mode 100644 index 71354ea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/in6.h-27XK0PQQKQYHM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM deleted file mode 100644 index 64250fc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HM/route.h-3KQNONJSIKJHM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO deleted file mode 100644 index 123d730..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/CFCharacterSet.h-2YUVXPAPN35HO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO deleted file mode 100644 index 776fb4d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HO/NSFileWrapper.h-2GXFCEVYAL6HO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP deleted file mode 100644 index c878f89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/IODataQueueShared.h-1PTND49FKHJHP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP deleted file mode 100644 index 4e38d3d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HP/ncurses_dll.h-9VC29QYZSPHP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU deleted file mode 100644 index 40cb754..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HU/_uint8_t.h-1MKLFPUURJLHU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV deleted file mode 100644 index 2e8c89e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HV/IORPC.h-2O2206FWRFUHV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW deleted file mode 100644 index 5838215..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HW/AEUserTermTypes.h-1T1AAF2N4J9HW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY deleted file mode 100644 index c02aa7e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HY/NSTimeZone.h-TVTKJKZGSUHY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ deleted file mode 100644 index bf62572..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/IONetworkStats.h-3I18JSF768SHZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ deleted file mode 100644 index c9887cc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/HZ/NSCoder.h-1F3A7A4WV6HZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 deleted file mode 100644 index 901c801..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I0/syslimits.h-TA97PN7JO9I0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 deleted file mode 100644 index 6004312..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/NSRegularExpression.h-2WU5IGZCGESI2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 deleted file mode 100644 index 277c389..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/cpio.h-18WNI7IDS9AI2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 deleted file mode 100644 index 9f76f90..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I2/utmp.h-1528IHW8RL6I2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 deleted file mode 100644 index 5b4dd70..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I5/UnicodeUtilities.h-D693Y5RRJSI5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 deleted file mode 100644 index fb78609..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I6/kauth.h-1U3GR7E9DFCI6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 deleted file mode 100644 index d948f59..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I7/NSOrderedSet.h-29OQDF326G3I7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 deleted file mode 100644 index bb5ba96..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSDate.h-FXZ9VZ2MZWI8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 deleted file mode 100644 index 0d1945e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I8/NSXMLNode.h-1NN9G4AMNFEI8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 deleted file mode 100644 index 9948923..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/I9/_strings.h-1CYI0LJSD29I9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB deleted file mode 100644 index 6a3d0d4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IB/membership.h-B7NJDGTK7BIB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID deleted file mode 100644 index f4ec351..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ID/hashtable2.h-28TS6481FURID and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH deleted file mode 100644 index c10908e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IH/_posix_availability.h-2HCVA4MYO2DIH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II deleted file mode 100644 index a8035ee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/II/NSLocale.h-11I7H6MCF98II and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ deleted file mode 100644 index 8b9f1a3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IJ/__stddef_rsize_t.h-LACUAKZMXYIJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK deleted file mode 100644 index 61dc887..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/AERegistry.h-3HPB3PZ2TNAIK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK deleted file mode 100644 index 41e59a8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IK/SecTrust.h-USZ5NWHL83IK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL deleted file mode 100644 index 318e8eb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/buf.h-5TA1S26VV7IL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL deleted file mode 100644 index d212048..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IL/objc-exception.h-O8WMV7DKAIL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM deleted file mode 100644 index 3225789..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IM/NSURLAuthenticationChallenge.h-JD7HE6YJ7CIM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP deleted file mode 100644 index 12e45be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/NSJSONSerialization.h-1FLCSY8BNZUIP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP deleted file mode 100644 index f90ae8e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/termios.h-2J45YFKYXBCIP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP deleted file mode 100644 index f014ff2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IP/time.h-1P7AN79RYECIP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR deleted file mode 100644 index 483cee5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/MacTypes.h-1SMUUQB891HIR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR deleted file mode 100644 index 3a8a528..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/NSPathUtilities.h-1NUYZJH9PYGIR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR deleted file mode 100644 index 22331cc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IR/malloc.h-9AGPIZAOWXIR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS deleted file mode 100644 index 24e5639..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IS/data.h-VDPF7OC87TIS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW deleted file mode 100644 index 975f9b5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/CoreFoundation.h-RMHS7O65L8IW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW deleted file mode 100644 index bbdce81..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/IOAccelTypes.h-1Y808RWE432IW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW deleted file mode 100644 index 9d5996b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/NSURLResponse.h-PKCQU9AFW7IW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW deleted file mode 100644 index 5dc4af3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IW/__xlocale.h-23OTWEN2PLTIW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX deleted file mode 100644 index 114edba..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/IX/certextensions.h-P40XZVSUSZIX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 deleted file mode 100644 index 9c39ad4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_clock_t.h-34TVOYNGQ4EJ0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 deleted file mode 100644 index 954ccab..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J0/_uintptr_t.h-3AIKHMCKYW0J0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 deleted file mode 100644 index 23791ed..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J1/CFFileSecurity.h-2RTUKU61BSLJ1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 deleted file mode 100644 index bb18797..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J2/NSBundle.h-FS3HXBLR36J2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 deleted file mode 100644 index 46a1cc1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSProtocolChecker.h-HOHAK17LHXJ3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 deleted file mode 100644 index 418d7f9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/NSXMLDocument.h-2VHMJSBTKRLJ3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 deleted file mode 100644 index 9017b56..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J3/thread_state.h-36GQREYHE4DJ3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 deleted file mode 100644 index 6bb01fe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J6/_intmax_t.h-3YYKIEJQSMJ6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 deleted file mode 100644 index ab0130a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/IODataQueueClient.h-3UCTYQ69M1SJ7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 deleted file mode 100644 index f3fca6d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J7/bootparams.h-1ERAQTAYPY0J7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 deleted file mode 100644 index eb99a1e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J8/audit_socket_type.h-14GPEE50VTGJ8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 deleted file mode 100644 index 9e96d89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/J9/TargetConditionals.h-16SORJ6HUVLJ9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA deleted file mode 100644 index d54fc90..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JA/NSScriptCoercionHandler.h-31504PXKKGUJA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD deleted file mode 100644 index e416433..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JD/NSUbiquitousKeyValueStore.h-4QL2QC50ZKJD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE deleted file mode 100644 index 66d0e68..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/_inttypes.h-3S0NPHRWK5HJE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE deleted file mode 100644 index 3373be9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/oidsattr.h-1MGNNNIH6SWJE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE deleted file mode 100644 index dfd5c5a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JE/ttychars.h-N8R1W21ZX9JE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF deleted file mode 100644 index a6707a2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JF/IOHIDDeviceTypes.h-1OGVPVZUBYWJF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG deleted file mode 100644 index c7a589d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JG/_nlink_t.h-3ED2UEP62POJG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI deleted file mode 100644 index 3c2a974..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/SecAsn1Types.h-MOE1WR64R8JI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI deleted file mode 100644 index 288e974..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/fp.h-2LJ0TFF2Z8UJI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI deleted file mode 100644 index 912d5a0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JI/libDER_config.h-VZ690IR5BMJI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ deleted file mode 100644 index 3ec34bf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JJ/dyld_images.h-115BLV11MJ9JJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL deleted file mode 100644 index 173f16f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JL/oidsalg.h-1VMBTWO7BACJL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM deleted file mode 100644 index b0fbcf6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/NSHTTPCookie.h-3LUI5ZOOA7TJM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM deleted file mode 100644 index 025965f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JM/__stddef_offsetof.h-2LUNIPF6B18JM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP deleted file mode 100644 index b0e192f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/IOBDBlockStorageDevice.h-2EJIP667C6AJP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP deleted file mode 100644 index 0d50bb9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSKeyValueCoding.h-9M8N9ORDW4JP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP deleted file mode 100644 index e13babe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/NSObject.h-1XVSOO2GKI4JP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP deleted file mode 100644 index c6a19a8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/igmp_var.h-2BDL9DCQE5SJP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP deleted file mode 100644 index 8a82aa6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JP/ip_icmp.h-2J4OUTLQTBPJP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ deleted file mode 100644 index 1502529..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JQ/IOFireWireLib.h-39B0V81AZHXJQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR deleted file mode 100644 index 6626800..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JR/cdefs.h-VEI3H6Q51YJR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS deleted file mode 100644 index 14e5496..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/emmtype.h-2SZ4BCGBMAJS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS deleted file mode 100644 index fa46766..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JS/icmp6.h-X1YT7TTP6KJS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU deleted file mode 100644 index 6cef17b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JU/_locale.h-3D53YSZ4BQQJU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW deleted file mode 100644 index e41ae54..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JW/hfs_mount.h-3D2I40O494ZJW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX deleted file mode 100644 index e17ca97..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JX/arm64e-apple-macos.swiftinterface_Protocols-34033LU3WQOJX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY deleted file mode 100644 index f8eef19..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/JY/AuthorizationDB.h-348WC36GVHJY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 deleted file mode 100644 index e861ed8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K1/IOKitServer.h-3J2G39IGFS4K1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 deleted file mode 100644 index 3d70282..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/NSURLCredentialStorage.h-2MR0J0CEHKWK2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 deleted file mode 100644 index 31cc150..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K2/_mach_port_t.h-RNHOROTXYAK2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 deleted file mode 100644 index d9bdb0d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K3/CFUUID.h-7FK1KNZT6EK3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 deleted file mode 100644 index c57d809..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K4/IOFilterScheme.h-1OMTQK478BBK4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 deleted file mode 100644 index 4c5b971..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K5/_int32_t.h-3MR7DZZIHJ4K5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 deleted file mode 100644 index 492805c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K6/__stddef_wchar_t.h-3MNV84OUMYLK6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 deleted file mode 100644 index ad244e2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K7/task_special_ports.h-1LC7W2JRODOK7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 deleted file mode 100644 index 84e81a8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/K9/arm64.h-FHT9WT2DQNK9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA deleted file mode 100644 index acb3f2a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/_null.h-1KC2UXHVQ0QKA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA deleted file mode 100644 index 8f02097..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KA/fmtmsg.h-3GM282SX335KA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB deleted file mode 100644 index 643c677..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/IOCFUnserialize.h-1V19GVB7SD9KB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB deleted file mode 100644 index c2d4287..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/_monetary.h-3PP93RDN6CTKB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB deleted file mode 100644 index c8b02f5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/mach_error.h-1IWYXGMD968KB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB deleted file mode 100644 index ab4c5af..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/printerdb.h-17U5IVRQSJ0KB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB deleted file mode 100644 index 40bcd70..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KB/thread_act.h-35VJFMGJB6PKB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE deleted file mode 100644 index 1f50de1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/CSIdentityQuery.h-YBH8GCY6MHKE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE deleted file mode 100644 index 19c8766..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/_locale_t.h-WOA8STU2H2KE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE deleted file mode 100644 index 864e8a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KE/hfs_format.h-3E51473HNSKKE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG deleted file mode 100644 index d373562..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/NSAppleScript.h-2T5EZZS7FG4KG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG deleted file mode 100644 index 8bd0205..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KG/traps.h-35PCFD07TKSKG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI deleted file mode 100644 index ecd36e5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KI/cssmkrspi.h-1QT1M6ZWOZLKI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ deleted file mode 100644 index 98f98f5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/AppleEvents.h-2WRTYLL06LFKJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ deleted file mode 100644 index 2b529df..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/LSQuarantine.h-18R0I488Z02KJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ deleted file mode 100644 index 7e09404..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/NSDistributedLock.h-3SY7ZQPZD5XKJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ deleted file mode 100644 index b83d887..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KJ/inet.h-11F05ZXC5T2KJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL deleted file mode 100644 index 158fa28..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KL/sdt_isa.h-1VREDZXGE7YKL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM deleted file mode 100644 index c11b623..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KM/__float_float.h-35PIKQLS43DKM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN deleted file mode 100644 index 74b1601..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/NSCalendar.h-2FEV31DVYJ6KN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN deleted file mode 100644 index 406ea94..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/ranlib.h-NRXX6ORQTRKN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN deleted file mode 100644 index 28113ef..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KN/sem.h-2B3TFRC6TAIKN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP deleted file mode 100644 index 6bbe539..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KP/host_reboot.h-1YFJ2L8YS58KP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR deleted file mode 100644 index 11bf305..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/DateTimeUtils.h-GOGHIGSVMSKR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR deleted file mode 100644 index 9aee30a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KR/NSThread.h-3QMTDFPW1EKKR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS deleted file mode 100644 index a7b344a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/Finder.h-272SHLQGNH4KS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS deleted file mode 100644 index 0c28d16..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KS/dirent.h-2XUW7TORCBXKS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT deleted file mode 100644 index 51b7aae..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KT/NSPortNameServer.h-3JUX3WBBR8FKT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU deleted file mode 100644 index a04bf4f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KU/IOGraphicsEngine.h-2P7FCT4MHL4KU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV deleted file mode 100644 index 6591ce0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/KV/_key_t.h-FG2O1960JQKV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 deleted file mode 100644 index bbd774e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L1/NSDebug.h-2L04XK5QEYYL1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 deleted file mode 100644 index 6339774..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/mds.h-1FARYB7FLVBL2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 deleted file mode 100644 index 176b67f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L2/stat.h-3NJF7FAUKCYL2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 deleted file mode 100644 index bb61bb1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L3/_caddr_t.h-13CMSBL2SPFL3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 deleted file mode 100644 index 3274f6f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/SecImportExport.h-2ZQYSZRDPHTL4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 deleted file mode 100644 index 970ac07..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L4/ndr_def.h-ZZA3IEUUROL4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 deleted file mode 100644 index 9332050..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L5/NSFileManager.h-29BGEJ2TEJIL5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 deleted file mode 100644 index 647d290..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L6/asm.h-28UD7C38W6AL6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 deleted file mode 100644 index c750605..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L7/CSIdentityBase.h-TF5B3UGD6ML7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 deleted file mode 100644 index ca40424..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/L8/IOApplePartitionScheme.h-3LGP0XRBCRXL8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA deleted file mode 100644 index 8b3c16b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/arm64e-apple-macos.swiftinterface-372W3URMQIGLA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA deleted file mode 100644 index 15fa85d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LA/if_ether.h-19LKX3SD72RLA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC deleted file mode 100644 index b0ce020..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LC/_pid_t.h-2FE53P1CFSQLC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE deleted file mode 100644 index cdfecc3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/sync_policy.h-1WVV1INCZXSLE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE deleted file mode 100644 index b3680a3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LE/vm_map.h-2CSE59GO075LE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG deleted file mode 100644 index 94d0c7a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LG/IOEthernetStats.h-3O1IB61UPOILG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH deleted file mode 100644 index 6c153ec..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSFilePresenter.h-2CF5BFVR8F9LH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH deleted file mode 100644 index e1c63db..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/NSScriptStandardSuiteCommands.h-3H5T8T3Z5B0LH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/arm64e-apple-macos.swiftinterface-1D97FSPU8YXLH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/arm64e-apple-macos.swiftinterface-1D97FSPU8YXLH deleted file mode 100644 index 5a5c9df..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LH/arm64e-apple-macos.swiftinterface-1D97FSPU8YXLH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI deleted file mode 100644 index ab0b805..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LI/NSGeometry.h-3APFRLYONLOLI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ deleted file mode 100644 index d4c35ea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LJ/UnicodeConverter.h-391IITF8MHKLJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN deleted file mode 100644 index b22ea13..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LN/NSXMLElement.h-1SQLKX09DYNLN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO deleted file mode 100644 index f2ba87c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/IOStreamLib.h-3NAIMTVY5MELO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO deleted file mode 100644 index 96bf919..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LO/stdbool.h-1TBOA4V1O4GLO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP deleted file mode 100644 index 34f9f70..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LP/IOAudioDefines.h-CUQ2PPWOSJLP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ deleted file mode 100644 index 2fbac45..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LQ/cssmcli.h-2C2L0NDW24OLQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW deleted file mode 100644 index d4059b6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LW/PEFBinaryFormat.h-24G8C1ND8MULW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX deleted file mode 100644 index f1c913d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LX/ev_keymap.h-1CB655QNUT5LX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY deleted file mode 100644 index f10b5be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/LY/processor_set.h-CAN0N3YK1YLY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 deleted file mode 100644 index f975567..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/ip.h-3GL6DJPY92VM1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 deleted file mode 100644 index 7b948a2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M1/vm_page_size.h-3FDTGWCYFUWM1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 deleted file mode 100644 index 946160e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M2/_pthread_rwlock_t.h-D4SHZJTDCLM2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 deleted file mode 100644 index ff02904..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/IOPowerSources.h-3MNH881Q1UEM4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 deleted file mode 100644 index 69767c0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M4/SecKeychain.h-2V0GXF9O6WEM4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 deleted file mode 100644 index d4f0220..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M5/termios.h-NGI0QGB9PM5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 deleted file mode 100644 index 43ddfb2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/IOHIDProperties.h-2NZQTULKQ6SM6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 deleted file mode 100644 index efdd5fc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M6/_pthread_once_t.h-2P5WKU6353VM6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 deleted file mode 100644 index 449a3cd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M7/MDImporter.h-39S5Z45H46LM7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 deleted file mode 100644 index 2aa41bf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M8/FoundationErrors.h-2EBXNAJX1U5M8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 deleted file mode 100644 index 5868009..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/IOPMKeys.h-3N5LIM7HCE3M9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 deleted file mode 100644 index 785257d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/NSXMLParser.h-3E86E3ODFLHM9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 deleted file mode 100644 index 14c62fd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/M9/fcntl.h-JIBISTDVT3M9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA deleted file mode 100644 index 6f82d01..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MA/proc.h-2IQ3RIUAQQHMA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB deleted file mode 100644 index 25903cd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MB/_id_t.h-362Q6A6ME9EMB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC deleted file mode 100644 index df37c8f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MC/panel.h-23T681O1ZHNMC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF deleted file mode 100644 index f9e7967..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MF/CFAttributedString.h-PP3O3MX2FCMF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG deleted file mode 100644 index e3dc037..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MG/CFNetworkDefs.h-1MUT8HXM0JHMG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH deleted file mode 100644 index c0e4de4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/NSMetadataAttributes.h-27M3VHHE9GJMH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH deleted file mode 100644 index 59ea876..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/_wint_t.h-3AKPTTYEK6HMH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH deleted file mode 100644 index 11585f9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MH/types.h-2MW2TQ815JMH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ deleted file mode 100644 index 1d2d2ee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/NSPredicateValidating.h-2QPFP7GPH3OMJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ deleted file mode 100644 index faef055..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MJ/ToolUtils.h-3D4D9BKMU97MJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN deleted file mode 100644 index be64bc4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOKitKeys.h-3LE4UJBV1REMN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN deleted file mode 100644 index fe4d932..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MN/IOPSKeys.h-17LO74H4WRMMN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO deleted file mode 100644 index 3853c6d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MO/mman.h-16H7TJ08HYEMO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP deleted file mode 100644 index e072794..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MP/udp.h-2I82RDASYY9MP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ deleted file mode 100644 index f642c21..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/ioss.h-2A7V0VB3TGCMQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ deleted file mode 100644 index 9d4e48c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MQ/user.h-1DH14OMA2G5MQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS deleted file mode 100644 index 0615a59..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/DERItem.h-3ELVL7YXMZMS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS deleted file mode 100644 index e115798..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/NSURLRequest.h-1G7BNTSZKNBMS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS deleted file mode 100644 index 54e9907..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MS/thread_status.h-K6PRQDDDTVMS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT deleted file mode 100644 index 532347c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MT/KeychainCore.h-3QFCSRMYJPTMT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU deleted file mode 100644 index 8b2faa0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MU/CFBag.h-5T0U4GPYO8MU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX deleted file mode 100644 index 065e1c3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MX/SecureDownload.h-1Z79CX7Q7PGMX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ deleted file mode 100644 index 19f655e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/__float_infinity_nan.h-2K082V914N7MZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ deleted file mode 100644 index 54da647..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/MZ/ndrv.h-1V72NPCZSU4MZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 deleted file mode 100644 index f250f70..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N1/_graftdmg_un.h-2V6PR4UM7X7N1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 deleted file mode 100644 index 77ae94d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N4/IOUPSPlugIn.h-KK5X35SDUNN4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 deleted file mode 100644 index 8611299..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N5/OSReturn.h-1QNX56UXB6MN5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 deleted file mode 100644 index 1a4f4a7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/SecTransform.h-2VZ8LS535CTN7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 deleted file mode 100644 index f97f215..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N7/_rsize_t.h-2IWFWLNHB1EN7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 deleted file mode 100644 index 27adc6b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/N9/_pthread_attr_t.h-2CVG635GKOCN9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA deleted file mode 100644 index 58dcc1f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NA/NSURLHandle.h-OXPLEATCB2NA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB deleted file mode 100644 index 31912fa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NB/unpcb.h-GXG2XGN19ANB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/KeychainService.swift-A55MCH1HHLND b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/KeychainService.swift-A55MCH1HHLND deleted file mode 100644 index 89bced7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/KeychainService.swift-A55MCH1HHLND and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND deleted file mode 100644 index fe53ac0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/SecPolicySearch.h-3IHBEEB3FWFND and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND deleted file mode 100644 index 283bf71..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ND/workgroup_object.h-155A6N16G1RND and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE deleted file mode 100644 index 2801b0f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NE/msgbuf.h-2IF781P25YANE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF deleted file mode 100644 index b08dbdd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOCFBundle.h-B3T3J1QX36NF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF deleted file mode 100644 index 9dccab4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/IOHIDDevice.h-3QQK1RBWSQ9NF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF deleted file mode 100644 index 320deee..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NF/unctrl.h-1BWH6HS6Z3GNF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG deleted file mode 100644 index 5255215..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NG/__stddef_size_t.h-EV3CIHQ00TNG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH deleted file mode 100644 index 3a0d542..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/IOVideoTypes.h-MR93PSBCC4NH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH deleted file mode 100644 index e727fa3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NH/fasttrap_isa.h-2OJI6ECWG5LNH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI deleted file mode 100644 index 2307d22..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NI/_iovec_t.h-2JBJIZE1HEMNI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ deleted file mode 100644 index 110ddf5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/NSLocalizedNumberFormatRule.h-28RBEBWNSRONJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ deleted file mode 100644 index 687ccd8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/SecAccess.h-PV7MXDHMYLNJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ deleted file mode 100644 index 8c729c2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/arm64e-apple-macos.swiftinterface_Math_Floating-19NHU6EPG6NJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ deleted file mode 100644 index 183bf05..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NJ/audit_kevents.h-2HQ6BH07B5KNJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK deleted file mode 100644 index 3d72fdd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/NSUserNotification.h-2QGU097MJAZNK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK deleted file mode 100644 index 79330de..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NK/oidscrl.h-58CLUQZMV6NK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL deleted file mode 100644 index 509c707..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NL/_ctype.h-1528JOSV6LHNL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM deleted file mode 100644 index a84d8d7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NM/_timespec.h-27MEHSAP8CNNM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO deleted file mode 100644 index cf2324a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NO/limits.h-33VFA90LD0INO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP deleted file mode 100644 index 887048b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NP/thread_state.h-RCK64T92QVNP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR deleted file mode 100644 index d61e8fc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/IOBDTypes.h-9WT7QBMG0NR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR deleted file mode 100644 index 92947dd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSExtensionContext.h-1LFZIF8YSFDNR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR deleted file mode 100644 index a317957..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NR/NSURLProtectionSpace.h-K9SYZSRAHFNR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW deleted file mode 100644 index f8ac640..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NW/thread_info.h-3KPSWJU4D1KNW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX deleted file mode 100644 index 745df8d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NX/if_types.h-1ITWCUH63WPNX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY deleted file mode 100644 index 9d9b667..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/NSMethodSignature.h-2OQEZSSAKGDNY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY deleted file mode 100644 index c2a9a37..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NY/ttycom.h-13TQDF1M5X8NY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ deleted file mode 100644 index 814a3c5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/NZ/_mount_t.h-3K12HB2OHYHNZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 deleted file mode 100644 index a851033..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/filio.h-2AHZBJ1LNJ7O1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 deleted file mode 100644 index bbe353f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O1/time.h-OEEZHVRQX1O1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 deleted file mode 100644 index 16a7374..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O3/IONetworkUserClient.h-DLCTP1T906O3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 deleted file mode 100644 index 2ca1025..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/CFByteOrder.h-1PX35BQKGFGO4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 deleted file mode 100644 index 0261331..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O4/SCSICmds_REQUEST_SENSE_Defs.h-3D95W4BMYK8O4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 deleted file mode 100644 index 1238138..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/NSBackgroundActivityScheduler.h-1V7VVFRCWJ0O8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 deleted file mode 100644 index 539edb0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O8/SCSITask.h-2O0UC0B1LYO8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 deleted file mode 100644 index af8a382..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/_u_int64_t.h-946RWGK2CSO9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 deleted file mode 100644 index af7fe2c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/O9/spawn.h-330X424E4BAO9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA deleted file mode 100644 index 45d0e6f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OA/in6_var.h-3UL6T9RX4WYOA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC deleted file mode 100644 index d033974..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/IOHIDKeys.h-2D5DOVYBXGQOC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC deleted file mode 100644 index 831c0f7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/NSArchiver.h-3MIU12JIQEEOC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC deleted file mode 100644 index 1a36c22..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OC/audit_record.h-3AACR3E2ULLOC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE deleted file mode 100644 index 49a5e86..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/NSURLConnection.h-3Q8AZ1Z437POE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE deleted file mode 100644 index a55ade7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/OSKextLib.h-TZ2KWFZRHLOE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE deleted file mode 100644 index d2bf994..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/_static_assert.h-3FMFFJN8XD2OE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE deleted file mode 100644 index 3d80826..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OE/clock_priv.h-4XA2NPBFBYOE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF deleted file mode 100644 index 6ff7cbe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OF/IOCDTypes.h-3LJH2XUGXZCOF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH deleted file mode 100644 index fe2cb47..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/NSAttributedString.h-27RKLLBJBYBOH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH deleted file mode 100644 index e69f781..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OH/ntsid.h-2M2UHH4KAFSOH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ deleted file mode 100644 index 1245aea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/AssertMacros.h-10PZ2I9NIABOJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ deleted file mode 100644 index 311a96f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OJ/err.h-3SI1P8CGUUVOJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK deleted file mode 100644 index e000922..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OK/setjmp.h-1577B0MFJ0IOK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM deleted file mode 100644 index e00f5d4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OM/_langinfo.h-1AKHCV1V920OM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO deleted file mode 100644 index 35866a0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/_suseconds_t.h-67FXSHAT6LOO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO deleted file mode 100644 index db0fdcb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OO/resourcevar.h-3IORAS1ZI9DOO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP deleted file mode 100644 index 98e32a7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OP/IOSharedLock.h-3IQF3G6PBNWOP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR deleted file mode 100644 index 7ab7b72..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/AvailabilityMacros.h-1NX9T40N4VFOR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR deleted file mode 100644 index e55d377..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OR/IOHIDLibObsolete.h-3716POZ21T3OR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT deleted file mode 100644 index 4d6c93a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OT/_int64_t.h-1C8PBLFOABIOT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU deleted file mode 100644 index 0b8ee9b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/LSInfoDeprecated.h-2NIWOUIT1HROU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU deleted file mode 100644 index a555079..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OU/NSDecimal.h-1J0CHRW808TOU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW deleted file mode 100644 index a6574eb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OW/MacMemory.h-1114X80XW6FOW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX deleted file mode 100644 index 25204c4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OX/NSUndoManager.h-1TOQPQ0YV4ROX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY deleted file mode 100644 index b8d5c7e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OY/IODVDMedia.h-1IADR67QMDJOY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ deleted file mode 100644 index 860b836..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/OZ/rbtree.h-3USKXMRPWDOZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 deleted file mode 100644 index 2d16f1a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P0/message.h-18EMHMAU0D1P0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 deleted file mode 100644 index 6a82d6a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/arm64e-apple-macos.swiftinterface-1Q27AH1NQS4P4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 deleted file mode 100644 index 8645d06..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P4/ttydefaults.h-35INNBIF154P4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 deleted file mode 100644 index 5fd5375..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P6/ftw.h-396MBCLQBJUP6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 deleted file mode 100644 index 1281744..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P7/IOHIDValue.h-EWS717BDKGP7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 deleted file mode 100644 index 2edef90..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/P8/_timeval64.h-MGP0EBZG2P8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB deleted file mode 100644 index 4ec958b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PB/OSCacheControl.h-S5WQ2HGYR0PB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC deleted file mode 100644 index 88787c3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PC/Endian.h-280BEL3WUOPPC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD deleted file mode 100644 index 7a56f1d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PD/fileport.h-28FAZUTOUEYPD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE deleted file mode 100644 index afd364e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PE/IOHIDUsageTables.h-3F1KGGEEBVNPE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG deleted file mode 100644 index 04c5590..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/vm.h-1GG2706LNZOPG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG deleted file mode 100644 index 6fce1f3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PG/workgroup_parallel.h-3MGN7KW9RUTPG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH deleted file mode 100644 index 0f0b4e7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/_size_t.h-2DIE3BNGF2HPH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH deleted file mode 100644 index 7231991..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PH/signal.h-3EUZHENASIUPH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM deleted file mode 100644 index b649fbf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PM/SecIdentitySearch.h-M5HTA2UAJ5PM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN deleted file mode 100644 index 2c364de..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PN/_uintmax_t.h-1AH75M817EMPN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP deleted file mode 100644 index e4db422..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/CFXMLNode.h-1Q0QXBXMGQGPP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP deleted file mode 100644 index 1b7f00e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PP/NSTimer.h-1CUUBXC2HWJPP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU deleted file mode 100644 index a759ac1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/assert.h-3Q5UWG6FV2DPU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU deleted file mode 100644 index d7baba6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PU/nl_types.h-1RI0YTXRNAHPU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX deleted file mode 100644 index 9297890..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/PX/NSScriptObjectSpecifiers.h-33JV2QDV824PX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 deleted file mode 100644 index af217a0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q2/vm_types.h-2LKVKU7ZPO8Q2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 deleted file mode 100644 index 8c5a92b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/_wctrans_t.h-3915B7EZBIZQ3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 deleted file mode 100644 index ac5a387..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q3/audit_uevents.h-3RXCXKXNA32Q3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 deleted file mode 100644 index 513ef16..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q4/_stdio.h-126GQ83FVKLQ4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 deleted file mode 100644 index bd5de72..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q5/mach_vm.h-3ICJOFPAVUVQ5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 deleted file mode 100644 index b12fb8a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/NSObjCRuntime.h-3PSNP8D3UDWQ6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 deleted file mode 100644 index c42ce5c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q6/proc_info.h-11R8ATFQC3CQ6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 deleted file mode 100644 index 742bd70..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/DriverSynchronization.h-2I566SHKQ1MQ8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 deleted file mode 100644 index bce863e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/NSFormatter.h-N7QVL6B0MQQ8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 deleted file mode 100644 index f89345b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q8/socket.h-3OG12DLFMT1Q8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 deleted file mode 100644 index 8d39233..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Q9/arm64e-apple-macos.swiftinterface-8NDBVH2NOMQ9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA deleted file mode 100644 index 7077d63..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QA/objc-api.h-1M641QLUA1UQA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC deleted file mode 100644 index 46fedd3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QC/SecDigestTransform.h-1X5JHIDIF6VQC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD deleted file mode 100644 index 930725e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QD/availability.h-1H3AIPDSPNRQD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE deleted file mode 100644 index 4ce52eb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QE/arm64e-apple-macos.swiftinterface_Misc-23ESY5AMRN5QE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH deleted file mode 100644 index 629a4e2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/CFNetDiagnostics.h-3QAYWXNJZX0QH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH deleted file mode 100644 index 3d8a18f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/IconsCore.h-1GVYAY8JOZ6QH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH deleted file mode 100644 index c1b7eaa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmapi.h-DAQ8RH9C6PQH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH deleted file mode 100644 index a24b632..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QH/cssmconfig.h-8SW7G5XUPLQH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM deleted file mode 100644 index c8a68a7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QM/cssmtype.h-P99HR65TP2QM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO deleted file mode 100644 index 17a818b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/IOStorageProtocolCharacteristics.h-TXWW9OGDEQO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO deleted file mode 100644 index 1619f41..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QO/NSFileCoordinator.h-4A24DXEN1CQO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP deleted file mode 100644 index 82e3682..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QP/NSHashTable.h-2U34LMDXQU1QP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ deleted file mode 100644 index 407e98d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QQ/KextManager.h-3KKQDSHMMRSQQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR deleted file mode 100644 index 1c13152..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/CipherSuite.h-1K52IFK0DSRQR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR deleted file mode 100644 index 2fa551f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/IOCFURLAccess.h-LGFY1B3HIPQR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR deleted file mode 100644 index c8d0d92..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QR/NSPort.h-GLS9ZUZ758QR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW deleted file mode 100644 index 3bedd50..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/_common.h-2A7D8BS7YTYQW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW deleted file mode 100644 index f63d9f0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QW/tcpip.h-1E8BOIN97SQQW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX deleted file mode 100644 index 0ccceb7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/QX/spawn.h-IEQ0WC7I9AQX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 deleted file mode 100644 index 8fb1d8b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/IOHIDLib.h-2EC1LQX3I7WR4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 deleted file mode 100644 index bb8fef5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R4/NSMeasurement.h-2RLBC1ESTIXR4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 deleted file mode 100644 index d3d6e0b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R6/NSCompoundPredicate.h-QYB9FPFW6NR6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 deleted file mode 100644 index 6bd921c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/_time.h-1TUFDNHS1L7R7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 deleted file mode 100644 index bf8444f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R7/task_inspect.h-VAFQTDZORBR7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 deleted file mode 100644 index cc35153..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R8/vm_info.h-1FS5WA5LXUKR8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 deleted file mode 100644 index 14d279a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/DADissenter.h-2LASJ8KZYOWR9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 deleted file mode 100644 index 7e6da69..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/R9/uuid.h-NGGNDAOU1UR9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA deleted file mode 100644 index f2b4835..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/oidsbase.h-2Y5IWQ000FARA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA deleted file mode 100644 index 083b7d6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RA/signal.h-2NUSFF1P700RA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD deleted file mode 100644 index b2a7e49..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/AEPackObject.h-3R64LQGW3BGRD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD deleted file mode 100644 index ca7a120..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RD/notify.h-3P0IS3RGS8RD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF deleted file mode 100644 index 39337eb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/Debugging.h-34C76LO0P8ZRF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF deleted file mode 100644 index 1db2467..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RF/_offsetof.h-3I240G3UW2FRF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH deleted file mode 100644 index 4a5f2a2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/IOStreamShared.h-1B991I513ZTRH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH deleted file mode 100644 index 7d27822..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/NSData.h-AI1JK1PM0GRH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH deleted file mode 100644 index d936087..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/arm64e-apple-macos.swiftinterface_Span-2K5DFWY2WL1RH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH deleted file mode 100644 index 9450f23..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RH/if_var.h-3629DNCGEO7RH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI deleted file mode 100644 index 301cc2b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RI/LowMem.h-2NIRHU0Y6H9RI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ deleted file mode 100644 index bb0a81a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RJ/unistd.h-2MWHJ11PD4SRJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN deleted file mode 100644 index e5fdea2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RN/udp_var.h-219VOV8P4YXRN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO deleted file mode 100644 index d1431d7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RO/NSXMLDTDNode.h-2IP9IAESZWVRO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP deleted file mode 100644 index cefb4e6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RP/pthread.h-2P7NT3J95ECRP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ deleted file mode 100644 index c13baa9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/arm64e-apple-macos.swiftinterface-1R3IMRLGB5URQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ deleted file mode 100644 index 48acd71..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RQ/socketvar.h-FRKW9MBMSCRQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR deleted file mode 100644 index 0b49caf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/MachineExceptions.h-66BI9EKN86RR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR deleted file mode 100644 index 7c47e64..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RR/reloc.h-E9BYTDA3OERR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV deleted file mode 100644 index 6f2a62a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/FixMath.h-3DU3L4Z95M3RV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV deleted file mode 100644 index a735400..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/IOBDMediaBSDClient.h-1JVYKHVF56KRV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV deleted file mode 100644 index 5d51994..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RV/dyld.h-3VVLPDU8GS2RV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY deleted file mode 100644 index fd18b99..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RY/NSString.h-3TWB82YRX3FRY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ deleted file mode 100644 index 20a9dfd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/RZ/fstab.h-B2V49I5L98RZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 deleted file mode 100644 index 01be1b4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S1/_endian.h-1GMC998VR1AS1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 deleted file mode 100644 index 145e895..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/bank_types.h-27K20Z5IPHTS3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 deleted file mode 100644 index b2b73b5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S3/zone_info.h-2HAN07W4TQZS3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 deleted file mode 100644 index af52021..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S4/syscall.h-WO2KVITOFJS4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 deleted file mode 100644 index 7c5ff63..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S5/SKSummary.h-2FY9LMASYBDS5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 deleted file mode 100644 index 324c630..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S7/poll.h-3D2J6AZEE1ZS7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 deleted file mode 100644 index 9f7ce0a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S8/SecRandom.h-2OI48NF3M6RS8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 deleted file mode 100644 index bc7d2bc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/S9/quota.h-SOYU388IW2S9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA deleted file mode 100644 index 3630258..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SA/NSDateInterval.h-31J90Q36P0SA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC deleted file mode 100644 index 9da8058..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SC/SecKeychainItem.h-3V2BDWCQ8VXSC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE deleted file mode 100644 index 94f0371..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SE/NSCalendarDate.h-2KBRL6MK3ERSE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG deleted file mode 100644 index 2ec9437..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/constrained_ctypes.h-1VYS3DVEZBVSG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG deleted file mode 100644 index b086849..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SG/machine.h-3NGUP3QACBWSG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI deleted file mode 100644 index f74bb30..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/Block.h-2HBZC0LU1UYSI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI deleted file mode 100644 index a3c5891..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/LSSharedFileList.h-TJ5CIQK4XOSI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI deleted file mode 100644 index c0c6a03..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileHandle.h-1X1UVJK7WRWSI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI deleted file mode 100644 index da580a1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SI/NSFileVersion.h-4IF3KSV4LTSI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ deleted file mode 100644 index e11ba63..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SJ/port_obj.h-2WCZO5EPZB5SJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK deleted file mode 100644 index cbc68f6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SK/IONetworkController.h-2S4O7C94B18SK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL deleted file mode 100644 index 5d52267..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SL/IOFireWireAVCLib.h-1HVICCTRCPJSL and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR deleted file mode 100644 index 7f96087..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SR/filedesc.h-LTBWTIGQI7SR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV deleted file mode 100644 index 2254cd9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/SV/vm_behavior.h-200MK08T64LSV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 deleted file mode 100644 index 9fa1e53..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/IOUSBLib.h-2IQBH4EWBLUT0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 deleted file mode 100644 index a210c18..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T0/arm64e-apple-macos.swiftinterface-3835HN5WAKUT0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 deleted file mode 100644 index f600049..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/NSMapTable.h-3EPDVP8D6Q3T1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 deleted file mode 100644 index 3f784fd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/SecSharedCredential.h-TWDE2IGONXT1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 deleted file mode 100644 index 08804a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T1/glob.h-1ICZXAHYHG5T1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 deleted file mode 100644 index 32b3512..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOCDMediaBSDClient.h-2NTTMZJSF1IT2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 deleted file mode 100644 index 500364b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/IOHIDDeviceKeys.h-248XACO3FIT2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 deleted file mode 100644 index 1e2f36c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_fsid_t.h-1CULW1KPTLOT2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 deleted file mode 100644 index b0cfbd8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T2/_langinfo.h-2X91Z58KCSTT2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 deleted file mode 100644 index c773c00..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/tty.h-1O588E9BUCGT4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 deleted file mode 100644 index 4b159d0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T4/utmpx.h-3TOXZBRVRWHT4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 deleted file mode 100644 index a1bd6ba..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T5/_uid_t.h-2LYC3XYB7D8T5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 deleted file mode 100644 index bbf274c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/NSRelativeDateTimeFormatter.h-3TV6RDKX48QT6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 deleted file mode 100644 index 43c9a93..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T6/cssmapple.h-31UX90O2W08T6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 deleted file mode 100644 index bcefb87..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/_socklen_t.h-1VITE68ADQLT8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 deleted file mode 100644 index 5aa7b8f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T8/base.h-1C8R6AOVBA9T8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 deleted file mode 100644 index ae2d979..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/_pthread_cond_t.h-1G1J8WDWBMGT9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 deleted file mode 100644 index c7c1146..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/T9/clock_types.h-3463DCVFLF9T9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA deleted file mode 100644 index d4076b9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/LSOpenDeprecated.h-R6CTQ7HZ6OTA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA deleted file mode 100644 index 1c5a675..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TA/_stdlib.h-3STU2JWTP7PTA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB deleted file mode 100644 index cbee880..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TB/queue.h-2PIVBWHNV36TB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC deleted file mode 100644 index a28655a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/CFData.h-11AETK2NXWHTC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC deleted file mode 100644 index 3918bed..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/NSItemProvider.h-Y916T3V3SXTC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC deleted file mode 100644 index 0f6e627..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TC/base.h-8C9L9TTVEUTC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD deleted file mode 100644 index 6c5d4f7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TD/_bounds.h-QC6Z8QOCLSTD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG deleted file mode 100644 index f13728a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/_assert.h-1JX3HXJYAB0TG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG deleted file mode 100644 index f62ce29..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TG/kern_return.h-3LV7N7PVUXBTG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI deleted file mode 100644 index 5d1b1dc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TI/CFSocketStream.h-1XRADVQS3HWTI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK deleted file mode 100644 index 29e1a21..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TK/NSPortCoder.h-71MC1Y0S5LTK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM deleted file mode 100644 index 98a7eea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TM/objc.h-2XJ4EJWY45JTM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP deleted file mode 100644 index c098247..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TP/NSListFormatter.h-2TOTQNXJBPRTP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ deleted file mode 100644 index 498666e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/NSValueTransformer.h-34A132VTF6UTQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ deleted file mode 100644 index b97090a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TQ/tar.h-HALLC6LE46TQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR deleted file mode 100644 index 625e5a1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TR/IOMapTypes.h-2QC3QJUR4WBTR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS deleted file mode 100644 index 5a0e311..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TS/NSMorphology.h-35O6F58HXBNTS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT deleted file mode 100644 index 34ca26f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/NSNetServices.h-1600ZFQTXFYTT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT deleted file mode 100644 index 6e1479e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TT/icmp_var.h-36D5SU1Q787TT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU deleted file mode 100644 index 2187700..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TU/disk.h-LGEAMJIITU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV deleted file mode 100644 index afff976..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TV/OSSpinLockDeprecated.h-17D5XNF9354TV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW deleted file mode 100644 index 5a2e0dd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TW/cssmtpi.h-1JMCJTV264ZTW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY deleted file mode 100644 index 96edce7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/TY/stdint.h-VX859H0V0GTY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 deleted file mode 100644 index c26d811..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/CFURLAccess.h-382GQ3WHT3OU0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 deleted file mode 100644 index 7e9d6e5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U0/IOFireWireSBP2Lib.h-24GCN07VTJU0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 deleted file mode 100644 index e14c025..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U3/CFNetServices.h-DA0GECN5U3U3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 deleted file mode 100644 index 471548d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U5/ulimit.h-2CQIZYHHYQRU5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 deleted file mode 100644 index add69a0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/IOGUIDPartitionScheme.h-3AGWZ80I5GKU7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 deleted file mode 100644 index 67597a1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/NSProgress.h-1NT2HLO23ZTU7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 deleted file mode 100644 index a65162c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/arm64e-apple-macos.swiftinterface_Result-34P37AHWRP3U7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 deleted file mode 100644 index 2401bb1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U7/page_info.h-KIPV6GWQP4U7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 deleted file mode 100644 index 4a43a82..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/kern_event.h-1XV5DB78TNWU8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 deleted file mode 100644 index 7338a3a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U8/tgmath.h-1IODXDZZ7Q6U8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 deleted file mode 100644 index 4cd3afd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/AuthorizationPlugin.h-2J45MVWGQOIU9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 deleted file mode 100644 index ea751c4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/U9/ip_var.h-LQQ6KH1OUIU9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA deleted file mode 100644 index 26a428a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/io.h-2I71JE2X78UA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA deleted file mode 100644 index 4be0987..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/protosw.h-20P2M7MMTCZUA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA deleted file mode 100644 index df05d54..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UA/vsock.h-HGNC4TBCO7UA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB deleted file mode 100644 index ff2f313..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UB/arm64e-apple-macos.swiftinterface_Math_Vector-1LHGA0TVAYGUB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC deleted file mode 100644 index 6e9ce82..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UC/arm64e-apple-macos.swiftinterface-2ZZL440X3A1UC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD deleted file mode 100644 index 42ad46c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/SecCertificateOIDs.h-17EDKY2Z8JZUD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD deleted file mode 100644 index 0456eb3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UD/_pthread_mutexattr_t.h-I2R5H8MA2DUD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF deleted file mode 100644 index dd67602..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/NSEnumerator.h-1PT7B16TNERUF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF deleted file mode 100644 index b683d45..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UF/_wchar_t.h-2D7TWI0JBA9UF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG deleted file mode 100644 index 49444e0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UG/Availability.h-1I3UYFLVKXHUG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH deleted file mode 100644 index f5344ed..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UH/NSAppleEventManager.h-BSZV8PS06KUH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK deleted file mode 100644 index f3cb140..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UK/MacErrors.h-XUGCG31SC3UK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM deleted file mode 100644 index a9c6664..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/MDItem.h-2N1PQEAM30KUM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM deleted file mode 100644 index 2348687..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UM/_pthread_t.h-1BZJ7FHWXOJUM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN deleted file mode 100644 index 1c2c361..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/AuthorizationTags.h-JKGPQ8TBIPUN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN deleted file mode 100644 index 7b4238a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/NSTermOfAddress.h-31WSG1ZSHDZUN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN deleted file mode 100644 index 6a37e84..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UN/tcp_seq.h-25ZTWMQHI6UUN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP deleted file mode 100644 index ae493f3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UP/PLStringFuncs.h-1T00LXJXVX9UP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR deleted file mode 100644 index e0d0e9f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/CFFTPStream.h-NPHAV10TCCUR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR deleted file mode 100644 index 81b09e0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UR/_locale_posix2008.h-2PBXNCRB4L3UR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS deleted file mode 100644 index 464813f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/US/NSKeyValueObserving.h-13JJ236L3OXUS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT deleted file mode 100644 index 24419e8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UT/bpf.h-2MHCJ37TZGOUT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV deleted file mode 100644 index 28fb61c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/_string.h-3V02R26Y3F7UV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV deleted file mode 100644 index b954e17..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UV/shm.h-W71B93UE2RUV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW deleted file mode 100644 index 593acff..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UW/endpoint.h-21ENJCU6IXHUW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX deleted file mode 100644 index fe906b3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/UX/CFBase.h-10VYD22UNFUUX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 deleted file mode 100644 index 2af60df..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V1/NSIndexSet.h-3JUVI0PZU7WV1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 deleted file mode 100644 index 754449c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V2/CFPropertyList.h-3DBA8FC16KTV2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 deleted file mode 100644 index 79cd522..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V3/NSHost.h-2BSIN910QN4V3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 deleted file mode 100644 index 602760e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V8/SCSICommandDefinitions.h-3TR8D6D27I1V8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 deleted file mode 100644 index 4b40daf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/SecAccessControl.h-27X3NDKFV2OV9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 deleted file mode 100644 index 070a6aa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/V9/WSTypes.h-10A5N2FNFUQV9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA deleted file mode 100644 index 47ee1a9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VA/NSSet.h-2CG8231C2ORVA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB deleted file mode 100644 index 5d6320d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VB/if_llc.h-2L4526QTMPZVB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD deleted file mode 100644 index 0598add..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VD/_wctype.h-2YYVT5PEKBGVD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF deleted file mode 100644 index bda2f80..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VF/AEMach.h-3L7RKFOI82QVF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH deleted file mode 100644 index a1ea006..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VH/Components.h-2SPG66LOG5VVH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ deleted file mode 100644 index 3b015fa..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VJ/host_notify.h-2FK0JHSZA55VJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK deleted file mode 100644 index 8a46523..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VK/if.h-B1DYMVKH3JVK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN deleted file mode 100644 index b7aef16..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/arm64e-apple-macos.swiftinterface-2OPBIJBBBFGVN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN deleted file mode 100644 index 302681a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VN/emmspi.h-1LHPI34FDSWVN and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO deleted file mode 100644 index cf5f422..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/NSXPCConnection.h-1LNOPVGRL39VO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO deleted file mode 100644 index de03261..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/sysexits.h-1N51R85V5G7VO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO deleted file mode 100644 index 9445b63..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VO/vm_statistics.h-1RNA8KEC8XZVO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ deleted file mode 100644 index 801bd67..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VQ/acct.h-Q6HQYOC54AVQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR deleted file mode 100644 index 4d61cae..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VR/_sa_family_t.h-2ZYNC75AX1KVR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU deleted file mode 100644 index bc5c92e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/CFSocket.h-34GTCW5ITB1VU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU deleted file mode 100644 index ffbc0d1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VU/NSArray.h-16U0QV9CB0AVU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV deleted file mode 100644 index 31b9890..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VV/NSURL.h-2DIFLM1OLI4VV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW deleted file mode 100644 index 93e6b21..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/VW/nc_tparm.h-30JCDU09O3BVW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 deleted file mode 100644 index 08cf58a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W1/CFNetworkErrors.h-1RJLDMFM2QAW1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 deleted file mode 100644 index 4d16f48..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W2/IOSerialKeys.h-1TN8H410O6ZW2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 deleted file mode 100644 index 61db7bd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W3/NSCache.h-15PYUAXKX7FW3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 deleted file mode 100644 index 3dedfe2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/CFRunLoop.h-1X7C4LV80P9W4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 deleted file mode 100644 index e221004..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W4/cssmdli.h-3I062R2429KW4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 deleted file mode 100644 index 1e2d9a8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W7/NSIndexPath.h-2CBSROGSCXCW7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 deleted file mode 100644 index 9b51892..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/NSLinguisticTagger.h-1HFFU23V8X3W9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 deleted file mode 100644 index 44bf47b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/aliasdb.h-19MBW03ECXHW9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 deleted file mode 100644 index bd23051..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/W9/statvfs.h-R1CIZP372BW9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA deleted file mode 100644 index b3815ea..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WA/vcmd.h-337OX3U172AWA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD deleted file mode 100644 index 3411a21..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WD/MultiprocessingInfo.h-2RQLFNIPJDVWD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE deleted file mode 100644 index 3dfeb86..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/IOFireWireLibIsoch.h-1T4YO9H12UBWE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE deleted file mode 100644 index fdb1bf6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WE/vm_inherit.h-3ERY6WTPBWHWE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG deleted file mode 100644 index 9d1f5af..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/IOVideoDeviceLib.h-31PN5B207MWG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG deleted file mode 100644 index c9295da..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WG/ndbm.h-2U9L172NPZJWG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI deleted file mode 100644 index a0d7f3c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/IOI2CInterface.h-3KTC89CDY8ZWI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI deleted file mode 100644 index a7cf809..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/dirent.h-DP97TXQISJWI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI deleted file mode 100644 index 0eba9a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WI/types.h-EDPX0HDHYBWI and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK deleted file mode 100644 index ef6c4a4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/CFPlugInCOM.h-15V2J7N4JH0WK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK deleted file mode 100644 index 1de5d0c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WK/NSURLProtocol.h-CSYK0VRSX6WK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM deleted file mode 100644 index c64bd83..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WM/SecureTransport.h-3SXD4C887DTWM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO deleted file mode 100644 index b4303e5..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/_fsblkcnt_t.h-3TL2TW8Z7AHWO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO deleted file mode 100644 index 8896cfe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WO/arm64e-apple-macos.swiftinterface_KeyPaths-2B61W68YLPLWO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP deleted file mode 100644 index 7194a03..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WP/mach.h-NIHV5KJ8HZWP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR deleted file mode 100644 index f37bf98..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/NSOrderedCollectionChange.h-L5SWUNYAATWR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR deleted file mode 100644 index 9bb3941..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WR/ethernet.h-M6FNGIMNTKWR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT deleted file mode 100644 index 188c2a2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WT/objc-auto.h-3JIGMUK2LK7WT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU deleted file mode 100644 index 1fed6c6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WU/mach_traps.h-ROCTDGRWMGWU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV deleted file mode 100644 index 73c06c8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WV/IOStorageControllerCharacteristics.h-2FC8UOFL3O7WV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW deleted file mode 100644 index 8ce78e6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WW/_string.h-1B5UG9QVTTMWW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX deleted file mode 100644 index 6a3facd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WX/NSScriptSuiteRegistry.h-1TETGV1Z3PCWX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ deleted file mode 100644 index 5a97458..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/WZ/Threads.h-30OK24PL9NUWZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 deleted file mode 100644 index 9e9ff6e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X1/_types.h-39CPQMKHSA7X1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 deleted file mode 100644 index 68e3081..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X2/ATASMARTLib.h-29RO9DH167DX2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 deleted file mode 100644 index a058bc3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X6/IOCDBlockStorageDevice.h-1GJPBRM0ZI1X6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 deleted file mode 100644 index fb78df3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/X7/launch.h-UFIX2EEKMKX7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC deleted file mode 100644 index 81980ed..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XC/DASession.h-2OJBX0VX70DXC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF deleted file mode 100644 index cc8e14e..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XF/arm64e-apple-macos.swiftinterface-2H40FEA1EJMXF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG deleted file mode 100644 index 2a20fb3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/grp.h-GI865IO248XG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG deleted file mode 100644 index c4040c1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XG/vm_attributes.h-1K9AZVGKWO2XG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK deleted file mode 100644 index cc08a59..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XK/NSDistributedNotificationCenter.h-25SLNIIX16HXK and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM deleted file mode 100644 index eabeffc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/IOCDPartitionScheme.h-2L1GLTVS8BRXM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM deleted file mode 100644 index bc09720..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XM/arm64e-apple-macos.swiftinterface-1XYZMC7VLVMXM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO deleted file mode 100644 index 229e7ba..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/CSCommon.h-1FJEEUMMEQVXO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO deleted file mode 100644 index d5e8abb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XO/ip6.h-2W6NHFXOPHHXO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP deleted file mode 100644 index 16082d9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/IOHIDTransaction.h-18ZWP5C8Y00XP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP deleted file mode 100644 index 6395fda..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XP/lock.h-36BE6GF747XXP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ deleted file mode 100644 index 0ed717a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XQ/_gid_t.h-3QLFYT8GCA5XQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR deleted file mode 100644 index 2b10d00..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/HFSVolumes.h-2H8C5EEMRHCXR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR deleted file mode 100644 index 902a1dd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XR/ioctl.h-N7DH46EM6ZXR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU deleted file mode 100644 index c337502..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XU/IOAccelSurfaceConnect.h-209GLZHY20VXU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV deleted file mode 100644 index 2255a6c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XV/CFString.h-2PUZ1L6COPVXV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX deleted file mode 100644 index 6ebac89..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/Resources.h-J9XS6AU6JJXX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX deleted file mode 100644 index 28ca2a6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XX/ldsyms.h-1IMM53TV5CMXX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY deleted file mode 100644 index 54c8ded..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/XY/CFMachPort.h-1ZCWDNMPKQFXY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 deleted file mode 100644 index 6f0c817..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/NSUserDefaults.h-3C2UJ6PVABLY0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 deleted file mode 100644 index bf3245a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y0/ioccom.h-3KH8E9YCWJTY0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 deleted file mode 100644 index 0c9ffed..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/CFNotificationCenter.h-388RU7NYVHXY1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 deleted file mode 100644 index a575d81..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/LSInfo.h-6DXUP2MDEVY1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 deleted file mode 100644 index ed2df11..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/base.h-1SPB4ATQ2W3Y1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 deleted file mode 100644 index 006f166..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y1/posix_sem.h-3O9GAOBIRL9Y1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 deleted file mode 100644 index 4ecac1f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y4/DictionaryServices.h-1IDKZFOIKD6Y4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 deleted file mode 100644 index cdeb6de..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y5/SecACL.h-1TWNZNONBMEY5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 deleted file mode 100644 index eeb91d7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y6/device_port.h-2XCK08B15NWY6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 deleted file mode 100644 index 6c772a2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Y8/kdebug_signpost.h-1PZYEMHCI2WY8 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE deleted file mode 100644 index e993166..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YE/IOHIDParameter.h-ESGPDNDSU8YE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG deleted file mode 100644 index 3f49555..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YG/SecEncryptTransform.h-49HCZVDQ8VYG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH deleted file mode 100644 index 5b1f9c9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YH/connection.h-2WD2D26MG76YH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ deleted file mode 100644 index 03db300..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YQ/gethostuuid.h-2PN6OXCITWTYQ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR deleted file mode 100644 index 6bc333c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YR/cssmaci.h-2513F688QJ1YR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT deleted file mode 100644 index fda9bef..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/CFURL.h-31IUVDSAWS3YT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT deleted file mode 100644 index 499eb63..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YT/NSExtensionItem.h-24Q5QRBV4KDYT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU deleted file mode 100644 index 549d575..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YU/SCSITaskLib.h-1Z9QNURJLPLYU and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV deleted file mode 100644 index 02aca3b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/IONetworkStack.h-2AO5GQDXFREYV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV deleted file mode 100644 index e5b0e2a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/arm64e-apple-macos.swiftinterface-1PNEE8QGBVPYV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV deleted file mode 100644 index 6848f18..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YV/vm_types.h-15AZFY6BAJYV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW deleted file mode 100644 index 49f79d7..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/CFUserNotification.h-Q2QNLWA8BRYW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW deleted file mode 100644 index 539681c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/NSHTTPCookieStorage.h-Q7UNUV9UC6YW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW deleted file mode 100644 index d146012..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/dispatch.h-YOXIC764IOYW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW deleted file mode 100644 index 168f297..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YW/tcp_timer.h-38D8ILLBHBMYW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX deleted file mode 100644 index 2cc39a9..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YX/NSKeyValueSharedObservers.h-1XMJWSQH4LZYX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY deleted file mode 100644 index fbdd550..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/BackupCore.h-VID7AQKAB8YY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY deleted file mode 100644 index fb9d08b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/Math64.h-3TDIM2TXH2KYY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY deleted file mode 100644 index b52db97..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/YY/NSMeasurementFormatter.h-196VNFCM4XFYY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 deleted file mode 100644 index 80ac77f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z0/CFPreferences.h-Y53KEVDFESZ0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 deleted file mode 100644 index d786447..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z1/CFStringEncodingExt.h-1CF9BBS3H4LZ1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 deleted file mode 100644 index ef379ce..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z2/SecAsn1Coder.h-252J56ACK5NZ2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 deleted file mode 100644 index 90bc7b1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/CFCGTypes.h-CZ3Y3OQ5UXZ4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 deleted file mode 100644 index b9279be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z4/hfs_unistr.h-30PY041J8IKZ4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 deleted file mode 100644 index 9cc9ca6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/hash_info.h-P8LLEJ8AJMZ7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 deleted file mode 100644 index 7b6e0be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z7/pthread_spis.h-MU9LVG3CFRZ7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 deleted file mode 100644 index 74136d4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/IOFireWireAVCConsts.h-2CHNEVD7X3MZ9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 deleted file mode 100644 index c9b32ca..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/__stddef_unreachable.h-XIIQIY1GE3Z9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 deleted file mode 100644 index b43d449..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/Z9/_s_ifmt.h-12HWKFN1SAUZ9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB deleted file mode 100644 index 02c2631..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/_pthread_mutex_t.h-28S1WVUTFPXZB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB deleted file mode 100644 index 8640e31..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZB/exception.h-C7ISZWPMWTZB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC deleted file mode 100644 index 6e097c1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/NSEnergyFormatter.h-20XEKVB4M25ZC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC deleted file mode 100644 index f5d62e3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/mig.h-3XDIEW4W8KZC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC deleted file mode 100644 index 420075c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZC/once.h-24CLFOKC317ZC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD deleted file mode 100644 index fb252b1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZD/audit_domain.h-34NZNIZIECDZD and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE deleted file mode 100644 index fee6ff6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/NSUnit.h-ENWKMTJZUNZE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE deleted file mode 100644 index 2f30076..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZE/pthread_impl.h-1E29VD117ABZE and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG deleted file mode 100644 index f459cdc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/SKSearch.h-A4T8Q3Z8O2ZG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG deleted file mode 100644 index da29210..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/cssmspi.h-1UD1J00SHKLZG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG deleted file mode 100644 index 24dd7fb..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZG/param.h-30A0KZP4JSZZG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH deleted file mode 100644 index f8ad16f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZH/activity.h-249WM1UVLY3ZH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ deleted file mode 100644 index c2f6c6a..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZJ/IOGraphicsInterfaceTypes.h-2KP8HIDU6BAZJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO deleted file mode 100644 index 617bcdf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZO/CFXMLParser.h-31IID0GY0ACZO and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP deleted file mode 100644 index dd58815..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZP/kmod.h-3VLMID9KMKTZP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR deleted file mode 100644 index f04f995..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/AvailabilityInternal.h-3NVL0BEZJ5MZR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR deleted file mode 100644 index 6a51c98..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/_abort.h-3PDSUDR7RMJZR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR deleted file mode 100644 index 58c848f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZR/mach_port.h-2187URF9OG6ZR and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS deleted file mode 100644 index 0629187..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZS/Files.h-3LREJA7B9I7ZS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW deleted file mode 100644 index 65eb0b4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZW/_time_t.h-37AGCAPPN49ZW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX deleted file mode 100644 index cd88664..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/UTType.h-Q9QB21S1SRZX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX deleted file mode 100644 index f799da1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZX/block.h-24XXBP8TIS4ZX and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY deleted file mode 100644 index 34817bd..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZY/IOHIDManager.h-1UY56COXEG2ZY and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ deleted file mode 100644 index 035a980..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/NSPointerArray.h-PULC5HCJ0WZZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ deleted file mode 100644 index 44a6435..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/records/ZZ/arm64e-apple-macos.swiftinterface-2KINSS3HY61ZZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-3VI1W9LCLDNER b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-3VI1W9LCLDNER deleted file mode 100644 index 4148957..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CFNetwork-1PNPO1ORVQZLS.pcm-3VI1W9LCLDNER and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2KPDSFGEWC6AT b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2KPDSFGEWC6AT deleted file mode 100644 index dc0fdb0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreFoundation-16SA8WK3L6MQN.pcm-2KPDSFGEWC6AT and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-1WJWN6XWH2W0K b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-1WJWN6XWH2W0K deleted file mode 100644 index d8c5c66..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/CoreServices-39NCTJOEW7PQ2.pcm-1WJWN6XWH2W0K and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-3BEDLQ9GFTOWG b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-3BEDLQ9GFTOWG deleted file mode 100644 index 1df15e4..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Darwin-1FXX23EKWOBA9.pcm-3BEDLQ9GFTOWG and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-S4I3TCDPJ9DP b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-S4I3TCDPJ9DP deleted file mode 100644 index acf7964..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/DiskArbitration-3LBJF5I58QD8.pcm-S4I3TCDPJ9DP and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-3BAR6ULXK1GWZ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-3BAR6ULXK1GWZ deleted file mode 100644 index 8109035..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Dispatch-R76HXUP80TVL.pcm-3BAR6ULXK1GWZ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-1LEFDK8O3UEPH b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-1LEFDK8O3UEPH deleted file mode 100644 index 84fe353..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Foundation-24LYWIP48SHNP.pcm-1LEFDK8O3UEPH and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-21BXCJKBGLJFB b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-21BXCJKBGLJFB deleted file mode 100644 index 4a3b92b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/IOKit-1IAL9NTK1TABA.pcm-21BXCJKBGLJFB and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/KeychainService.swift.o-CICIJHS2AFR6 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/KeychainService.swift.o-CICIJHS2AFR6 deleted file mode 100644 index 5c0e043..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/KeychainService.swift.o-CICIJHS2AFR6 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3BZFX2COKJTB9 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3BZFX2COKJTB9 deleted file mode 100644 index 1becfcc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/MachO-20RPYVQSX341K.pcm-3BZFX2COKJTB9 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-3DJ7KYVT353TJ b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-3DJ7KYVT353TJ deleted file mode 100644 index 3485729..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ObjectiveC-1G8H182PQX3QE.pcm-3DJ7KYVT353TJ and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-16D4A91HX5MM4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-16D4A91HX5MM4 deleted file mode 100644 index 63f30da..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/Security-3QCVXOV25KK54.pcm-16D4A91HX5MM4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-DI9V4XAIMW4 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-DI9V4XAIMW4 deleted file mode 100644 index 5f033f8..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/XPC-T0ZXCAST7PE3.pcm-DI9V4XAIMW4 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-1VB9ZIHS2ACQV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-1VB9ZIHS2ACQV deleted file mode 100644 index 254fac2..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_AvailabilityInternal-2YSBQADOLX02V.pcm-1VB9ZIHS2ACQV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-DK6U7GDQ0DUW b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-DK6U7GDQ0DUW deleted file mode 100644 index 88450d6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_float-2OQWMRBVRD4OJ.pcm-DK6U7GDQ0DUW and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-29NTWHXOANLER b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-29NTWHXOANLER deleted file mode 100644 index f0276be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_inttypes-2OQWMRBVRD4OJ.pcm-29NTWHXOANLER and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-F7Q8X005T5IV b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-F7Q8X005T5IV deleted file mode 100644 index 27e2643..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_limits-2OQWMRBVRD4OJ.pcm-F7Q8X005T5IV and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-2VCMPMKJMD32B b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-2VCMPMKJMD32B deleted file mode 100644 index d41d40b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdarg-2OQWMRBVRD4OJ.pcm-2VCMPMKJMD32B and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-1TJQS0DAPXB25 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-1TJQS0DAPXB25 deleted file mode 100644 index 243ae3b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdbool-2OQWMRBVRD4OJ.pcm-1TJQS0DAPXB25 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-17M41GMIH5080 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-17M41GMIH5080 deleted file mode 100644 index 21c5905..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stddef-2OQWMRBVRD4OJ.pcm-17M41GMIH5080 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2DC7ISKZ3DTS5 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2DC7ISKZ3DTS5 deleted file mode 100644 index 6fc5394..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_Builtin_stdint-2OQWMRBVRD4OJ.pcm-2DC7ISKZ3DTS5 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-3BTU79N7HQN4Y b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-3BTU79N7HQN4Y deleted file mode 100644 index 6cbca82..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation1-2YSBQADOLX02V.pcm-3BTU79N7HQN4Y and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-1THR1R473YR82 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-1THR1R473YR82 deleted file mode 100644 index c375782..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation2-3J4ZFA06I5V1P.pcm-1THR1R473YR82 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-3R8GT1UK5J1WC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-3R8GT1UK5J1WC deleted file mode 100644 index 58dbb63..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_DarwinFoundation3-2NSGASPTSNBVQ.pcm-3R8GT1UK5J1WC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-5YR9JWD8YG7X b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-5YR9JWD8YG7X deleted file mode 100644 index 3ef5745..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/_SwiftConcurrencyShims-2IMTS4WWRU7VJ.pcm-5YR9JWD8YG7X and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 deleted file mode 100644 index a990809..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-16XI1MP8Z7AE3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM deleted file mode 100644 index 561391c..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1BZVBI0DZLKBM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 deleted file mode 100644 index 7a34b1d..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1KXEPPLXTKKA0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 deleted file mode 100644 index bacc02f..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1NVTEMDB9CNK3 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G deleted file mode 100644 index e5cc8ca..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1ROQMSUEZ1H0G and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA deleted file mode 100644 index a494396..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-1WM09V0PBE3AA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC deleted file mode 100644 index 70b5eb3..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-259PMDN7IBVSC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 deleted file mode 100644 index dbb5b27..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-25YZUAYIGP5E1 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 deleted file mode 100644 index 7b9ea81..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2DRKELW4UJTK0 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 deleted file mode 100644 index bfce1d0..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2HW4DEQZFWNK2 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND deleted file mode 100644 index cd10ac1..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-2QIK9H60NNRND and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V deleted file mode 100644 index 5351c09..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-335EFZ0WRMP2V and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC deleted file mode 100644 index 1869c98..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-3AW893KJ3LRC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 deleted file mode 100644 index b289cbe..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-A3C05DCG71G7 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF deleted file mode 100644 index cc09d31..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/arm64e-apple-macos.swiftinterface-ZSZS0DXZI7FF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-36YMYH9SKBS3C b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-36YMYH9SKBS3C deleted file mode 100644 index 4ab41cc..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/launch-3T3BU4MASLMUM.pcm-36YMYH9SKBS3C and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-1R05BTHO9X9EA b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-1R05BTHO9X9EA deleted file mode 100644 index 9036ff6..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/libDER-26DYHF6GC6WWA.pcm-1R05BTHO9X9EA and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-NKXYYGUNRXM b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-NKXYYGUNRXM deleted file mode 100644 index 0a9fedf..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/libkern-2KQ0X67RTM1JF.pcm-NKXYYGUNRXM and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-2JOPQQKLOWJ29 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-2JOPQQKLOWJ29 deleted file mode 100644 index b028e99..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/os_object-2MV8OP7R98AN8.pcm-2JOPQQKLOWJ29 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-WBVTNXW4IL85 b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-WBVTNXW4IL85 deleted file mode 100644 index 0352d45..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/os_workgroup-2MV8OP7R98AN8.pcm-WBVTNXW4IL85 and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-2EWAC15WK81YF b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-2EWAC15WK81YF deleted file mode 100644 index 90bed5b..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrauth-2OQWMRBVRD4OJ.pcm-2EWAC15WK81YF and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-1EUJ5QL63NQTC b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-1EUJ5QL63NQTC deleted file mode 100644 index 8adcc57..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/ptrcheck-2OQWMRBVRD4OJ.pcm-1EUJ5QL63NQTC and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-3LQ6XAKBNNUSS b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-3LQ6XAKBNNUSS deleted file mode 100644 index d9411be..0000000 Binary files a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store/v5/units/sys_types-3J4ZFA06I5V1P.pcm-3LQ6XAKBNNUSS and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/plugin-tools-description.json b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/plugin-tools-description.json deleted file mode 100644 index d5292ae..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/plugin-tools-description.json +++ /dev/null @@ -1,223 +0,0 @@ -{ - "builtTestProducts" : [ - - ], - "copyCommands" : { - - }, - "explicitTargetDependencyImportCheckingMode" : { - "none" : { - - } - }, - "generatedSourceTargetSet" : [ - - ], - "pluginDescriptions" : [ - - ], - "swiftCommands" : { - "C.VelodyUtilities-arm64-apple-macosx-debug.module" : { - "executable" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "fileList" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources", - "importPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules", - "inputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" - } - ], - "isLibrary" : true, - "moduleName" : "VelodyUtilities", - "moduleOutputPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule", - "objects" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o" - ], - "otherArguments" : [ - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodyutilities" - ], - "outputFileMapPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/output-file-map.json", - "outputs" : [ - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule" - } - ], - "prepareForIndexing" : false, - "sources" : [ - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift" - ], - "tempsPath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build", - "wholeModuleOptimization" : false - } - }, - "swiftFrontendCommands" : { - - }, - "swiftTargetScanArgs" : { - "VelodyUtilities" : [ - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc", - "-module-name", - "VelodyUtilities", - "-package-name", - "velodyutilities", - "-c", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift", - "-I", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules", - "-target", - "arm64-apple-macosx14.0", - "-incremental", - "-enable-batch-mode", - "-serialize-diagnostics", - "-index-store-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store", - "-Onone", - "-enable-testing", - "-j10", - "-DSWIFT_PACKAGE", - "-DDEBUG", - "-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE", - "-module-cache-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache", - "-parseable-output", - "-parse-as-library", - "-emit-objc-header", - "-emit-objc-header-path", - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h", - "-swift-version", - "5", - "-plugin-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing", - "-sdk", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-F", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-I", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-L", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib", - "-g", - "-Xcc", - "-isysroot", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk", - "-Xcc", - "-F", - "-Xcc", - "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks", - "-Xcc", - "-fPIC", - "-Xcc", - "-g", - "-package-name", - "velodyutilities", - "-driver-use-frontend-path", - "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - ] - }, - "targetDependencyMap" : { - "VelodyUtilities" : [ - - ] - }, - "testDiscoveryCommands" : { - - }, - "testEntryPointCommands" : { - - }, - "traitConfiguration" : { - "default" : { - - } - }, - "writeCommands" : { - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" : { - "alwaysOutOfDate" : false, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" - }, - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" : { - "alwaysOutOfDate" : true, - "inputs" : [ - { - "kind" : "virtual", - "name" : "" - }, - { - "kind" : "file", - "name" : "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc" - } - ], - "outputFilePath" : "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - } - } -} \ No newline at end of file diff --git a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt b/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt deleted file mode 100644 index caf9e2b..0000000 --- a/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt +++ /dev/null @@ -1,2 +0,0 @@ -Apple Swift version 6.3.2 (swiftlang-6.3.2.1.108 clang-2100.1.1.101) -Target: arm64-apple-macosx26.0 diff --git a/packages/apple/VelodyUtilities/.build/build.db b/packages/apple/VelodyUtilities/.build/build.db deleted file mode 100644 index 0b94307..0000000 Binary files a/packages/apple/VelodyUtilities/.build/build.db and /dev/null differ diff --git a/packages/apple/VelodyUtilities/.build/debug b/packages/apple/VelodyUtilities/.build/debug deleted file mode 120000 index 9733fca..0000000 --- a/packages/apple/VelodyUtilities/.build/debug +++ /dev/null @@ -1 +0,0 @@ -arm64-apple-macosx/debug \ No newline at end of file diff --git a/packages/apple/VelodyUtilities/.build/debug.yaml b/packages/apple/VelodyUtilities/.build/debug.yaml deleted file mode 100644 index d6c0e2f..0000000 --- a/packages/apple/VelodyUtilities/.build/debug.yaml +++ /dev/null @@ -1,47 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyUtilities-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule"] - outputs: [""] - - "C.VelodyUtilities-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule"] - description: "Compiling Swift Module 'VelodyUtilities' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyUtilities","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodyutilities"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyUtilities/.build/plugin-tools.yaml b/packages/apple/VelodyUtilities/.build/plugin-tools.yaml deleted file mode 100644 index d6c0e2f..0000000 --- a/packages/apple/VelodyUtilities/.build/plugin-tools.yaml +++ /dev/null @@ -1,47 +0,0 @@ -client: - name: basic - file-system: device-agnostic -tools: {} -targets: - "PackageStructure": [""] - "VelodyUtilities-arm64-apple-macosx-debug.module": [""] - "main": [""] - "test": [""] -default: "main" -nodes: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/": - is-directory-structure: true - content-exclusion-patterns: [".git",".build"] -commands: - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources": - tool: write-auxiliary-file - inputs: ["","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources"] - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources" - - "/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt": - tool: write-auxiliary-file - inputs: ["","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt"] - always-out-of-date: "true" - description: "Write auxiliary file /Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt" - - "": - tool: phony - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule"] - outputs: [""] - - "C.VelodyUtilities-arm64-apple-macosx-debug.module": - tool: shell - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/KeychainService.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/swift-version--58304C5D6DBC2206.txt","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources"] - outputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/KeychainService.swift.o","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule"] - description: "Compiling Swift Module 'VelodyUtilities' (1 sources)" - args: ["/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc","-module-name","VelodyUtilities","-emit-dependencies","-emit-module","-emit-module-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules/VelodyUtilities.swiftmodule","-output-file-map","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/output-file-map.json","-parse-as-library","-incremental","-c","@/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/sources","-I","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/Modules","-target","arm64-apple-macosx14.0","-incremental","-enable-batch-mode","-serialize-diagnostics","-index-store-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/index/store","-Onone","-enable-testing","-j10","-DSWIFT_PACKAGE","-DDEBUG","-DSWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE","-module-cache-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/ModuleCache","-parseable-output","-parse-as-library","-emit-objc-header","-emit-objc-header-path","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/.build/arm64-apple-macosx/debug/VelodyUtilities.build/include/VelodyUtilities-Swift.h","-swift-version","5","-plugin-path","/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing","-sdk","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-F","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-I","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-L","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib","-g","-Xcc","-isysroot","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX26.5.sdk","-Xcc","-F","-Xcc","/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks","-Xcc","-fPIC","-Xcc","-g","-package-name","velodyutilities"] - - "PackageStructure": - tool: package-structure-tool - inputs: ["/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Sources/VelodyUtilities/","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Package.swift","/Users/diya/Docker/Apps/velody/packages/apple/VelodyUtilities/Package.resolved"] - outputs: [""] - description: "Planning build" - allow-missing-inputs: true - diff --git a/packages/apple/VelodyUtilities/.build/workspace-state.json b/packages/apple/VelodyUtilities/.build/workspace-state.json deleted file mode 100644 index 7c0cb06..0000000 --- a/packages/apple/VelodyUtilities/.build/workspace-state.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "object" : { - "artifacts" : [ - - ], - "dependencies" : [ - - ], - "prebuilts" : [ - - ] - }, - "version" : 7 -} \ No newline at end of file