The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of BluetoothMessageProtocol, reference 2.0.1 (10cba9), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 18:19:13 UTC.

Swift 6 data race errors: 171

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[480/498] Compiling BluetoothMessageProtocol Errors.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[481/498] Compiling BluetoothMessageProtocol DataExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[482/498] Compiling BluetoothMessageProtocol Resolutionable.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[483/498] Compiling BluetoothMessageProtocol StringExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[484/498] Compiling BluetoothMessageProtocol UInt8Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[485/498] Compiling BluetoothMessageProtocol UUIDExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[486/498] Compiling BluetoothMessageProtocol GapAdvertisingType.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[487/498] Compiling BluetoothMessageProtocol GapDataType.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[488/498] Compiling BluetoothMessageProtocol GapEventType.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[489/498] Compiling BluetoothMessageProtocol PeerAddress.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[490/498] Compiling BluetoothMessageProtocol ServiceHapAccessoryInformation.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[491/498] Compiling BluetoothMessageProtocol ServiceHapAirPurifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[492/498] Compiling BluetoothMessageProtocol ServiceHapAirQualitySensor.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[493/498] Compiling BluetoothMessageProtocol ServiceHapBatteryService.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[494/498] Compiling BluetoothMessageProtocol ServiceHapCameraRtpStreamManagement.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[495/498] Compiling BluetoothMessageProtocol ServiceHapCarbonDioxideSensor.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[496/498] Compiling BluetoothMessageProtocol ServiceHapCarbonMonoxideSensor.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[497/498] Compiling BluetoothMessageProtocol ServiceHapContactSensor.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
[498/498] Compiling BluetoothMessageProtocol ServiceHapDoor.swift
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifier.swift:27:14: warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 25 | import Foundation
 26 |
 27 | internal var allCompanyIdentifiers: [CompanyIdentifier] = [CompanyIdentifier]()
    |              |- warning: var 'allCompanyIdentifiers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: convert 'allCompanyIdentifiers' to a 'let' constant to make 'Sendable' shared state immutable
    |              |- note: add '@MainActor' to make var 'allCompanyIdentifiers' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 28 |
 29 | /// Errors for Company Identifier
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/CompanyIdentifier/CompanyIdentifierSupportedExtension.swift:31:16: warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  29 |
  30 |     /// Array of all Supported CompanyIdentifier values
  31 |     static var supportedCompanyIdentifers: [CompanyIdentifier] = {
     |                |- warning: static property 'supportedCompanyIdentifers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
     |                |- note: convert 'supportedCompanyIdentifers' to a 'let' constant to make 'Sendable' shared state immutable
     |                |- note: add '@MainActor' to make static property 'supportedCompanyIdentifers' part of global actor 'MainActor'
     |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  32 |
  33 |         allCompanyIdentifiers.append(.reserved)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:31:16: warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 29 |
 30 |     /// Resolution of 1
 31 |     static var one = Resolution(scale: 1, offset: 0)
    |                |- warning: static property 'one' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'one' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'one' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |
 33 |     /// Resoluton of 2 (0.5)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:34:16: warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 32 |
 33 |     /// Resoluton of 2 (0.5)
 34 |     static var two = Resolution(scale: 2, offset: 0)
    |                |- warning: static property 'two' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'two' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'two' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:37:16: warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 35 |
 36 |     /// 1 / 10 Resolution (0.1)
 37 |     static var oneTenth = Resolution(scale: 10, offset: 0)
    |                |- warning: static property 'oneTenth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:40:16: warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 38 |
 39 |     /// 1 / 100 Resolution (0.01)
 40 |     static var oneHundredth = Resolution(scale: 100, offset: 0)
    |                |- warning: static property 'oneHundredth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneHundredth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneHundredth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:43:16: warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// 1 / 1000 Resolution (0.001)
 43 |     static var oneThousandth = Resolution(scale: 1000, offset: 0)
    |                |- warning: static property 'oneThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:46:16: warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// 1 / 5000 Resolution (0.005)
 46 |     static var oneFiveThousandth = Resolution(scale: 5000, offset: 0)
    |                |- warning: static property 'oneFiveThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneFiveThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneFiveThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
/Users/admin/builder/spi-builder-workspace/Sources/BluetoothMessageProtocol/Extensions/Resolutionable.swift:49:16: warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// 1 / 10000 Resolution (0.0001)
 49 |     static var oneTenThousandth = Resolution(scale: 10000, offset: 0)
    |                |- warning: static property 'oneTenThousandth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'oneTenThousandth' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'oneTenThousandth' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// Scale
Build complete! (32.21s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "fitnessunits",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.1.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/FitnessKit/FitnessUnits"
    },
    {
      "identity" : "datadecoder",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.0.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/FitnessKit/DataDecoder"
    },
    {
      "identity" : "cryptoswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/krzyzanowskim/CryptoSwift"
    }
  ],
  "manifest_display_name" : "BluetoothMessageProtocol",
  "name" : "BluetoothMessageProtocol",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "BluetoothMessageProtocol",
      "targets" : [
        "BluetoothMessageProtocol"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "BluetoothMessageProtocolTests",
      "module_type" : "SwiftTarget",
      "name" : "BluetoothMessageProtocolTests",
      "path" : "Tests/BluetoothMessageProtocolTests",
      "sources" : [
        "CharacteristicCurrentTimeTests.swift",
        "CodeableTests.swift",
        "CompanyIdentifierTests.swift",
        "GymConnectTests.swift",
        "HeartRateTests.swift",
        "HomeKitTests.swift",
        "MemberIdentifierTests.swift",
        "ModelIdentifierTests.swift",
        "ResolutionTest.swift"
      ],
      "target_dependencies" : [
        "BluetoothMessageProtocol"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BluetoothMessageProtocol",
      "module_type" : "SwiftTarget",
      "name" : "BluetoothMessageProtocol",
      "path" : "Sources/BluetoothMessageProtocol",
      "product_dependencies" : [
        "FitnessUnits",
        "DataDecoder",
        "CryptoSwift"
      ],
      "product_memberships" : [
        "BluetoothMessageProtocol"
      ],
      "sources" : [
        "BluetoothBounds.swift",
        "BluetoothCodable.swift",
        "BluetoothMessageProtocol.swift",
        "Characteristic.swift",
        "Characteristic/Custom/CharacteristicGymConnectEquipmentState.swift",
        "Characteristic/Custom/CharacteristicGymConnectEquipmentStateName.swift",
        "Characteristic/Custom/CharacteristicGymConnectEquipmentType.swift",
        "Characteristic/Custom/CharacteristicGymConnectMeasurement.swift",
        "Characteristic/Custom/CharacteristicGymConnectWorkoutProgramName.swift",
        "Characteristic/Custom/CharacteristicNorthPoleAweDiagnostics.swift",
        "Characteristic/Custom/CharacteristicNorthPoleAweHeartRateMeasurement.swift",
        "Characteristic/Custom/CharacteristicNorthPoleAweWorkoutInformation.swift",
        "Characteristic/Custom/CharacteristicTacxAntFecReceive.swift",
        "Characteristic/Custom/CharacteristicTacxAntFecSend.swift",
        "Characteristic/SIG/CharacteristicAerobicHeartRateLowerLimit.swift",
        "Characteristic/SIG/CharacteristicAerobicHeartRateUpperLimit.swift",
        "Characteristic/SIG/CharacteristicAerobicThreshold.swift",
        "Characteristic/SIG/CharacteristicAge.swift",
        "Characteristic/SIG/CharacteristicAlertCategoryID.swift",
        "Characteristic/SIG/CharacteristicAlertCategoryIDBitMask.swift",
        "Characteristic/SIG/CharacteristicAlertLevel.swift",
        "Characteristic/SIG/CharacteristicAlertNotificationControlPoint.swift",
        "Characteristic/SIG/CharacteristicAlertStatus.swift",
        "Characteristic/SIG/CharacteristicAltitude.swift",
        "Characteristic/SIG/CharacteristicAnaerobicHeartRateLowerLimit.swift",
        "Characteristic/SIG/CharacteristicAnaerobicHeartRateUpperLimit.swift",
        "Characteristic/SIG/CharacteristicAnaerobicThreshold.swift",
        "Characteristic/SIG/CharacteristicAnalog.swift",
        "Characteristic/SIG/CharacteristicAnalogOutput.swift",
        "Characteristic/SIG/CharacteristicApparentWindDirection.swift",
        "Characteristic/SIG/CharacteristicApparentWindSpeed.swift",
        "Characteristic/SIG/CharacteristicAppearance.swift",
        "Characteristic/SIG/CharacteristicBarometricPressureTrend.swift",
        "Characteristic/SIG/CharacteristicBatteryLevel.swift",
        "Characteristic/SIG/CharacteristicBatteryLevelState.swift",
        "Characteristic/SIG/CharacteristicBatteryPowerState.swift",
        "Characteristic/SIG/CharacteristicBloodPressureFeature.swift",
        "Characteristic/SIG/CharacteristicBloodPressureMeasurement.swift",
        "Characteristic/SIG/CharacteristicBodyCompositionMeasurement.swift",
        "Characteristic/SIG/CharacteristicBodySensorLocation.swift",
        "Characteristic/SIG/CharacteristicBondManagementFeatures.swift",
        "Characteristic/SIG/CharacteristicContinuousGlucoseMonitoringFeature.swift",
        "Characteristic/SIG/CharacteristicCrossTrainerData.swift",
        "Characteristic/SIG/CharacteristicCurrentTime.swift",
        "Characteristic/SIG/CharacteristicCyclingSpeedCadence.swift",
        "Characteristic/SIG/CharacteristicCyclingSpeedCadenceFeature.swift",
        "Characteristic/SIG/CharacteristicDSTOffset.swift",
        "Characteristic/SIG/CharacteristicDatabaseChangeIncrement.swift",
        "Characteristic/SIG/CharacteristicDateOfBirth.swift",
        "Characteristic/SIG/CharacteristicDateTime.swift",
        "Characteristic/SIG/CharacteristicDateofThresholdAssessment.swift",
        "Characteristic/SIG/CharacteristicDayDateTime.swift",
        "Characteristic/SIG/CharacteristicDayOfWeek.swift",
        "Characteristic/SIG/CharacteristicDeviceName.swift",
        "Characteristic/SIG/CharacteristicDewPoint.swift",
        "Characteristic/SIG/CharacteristicElevation.swift",
        "Characteristic/SIG/CharacteristicEmailAddress.swift",
        "Characteristic/SIG/CharacteristicFatBurnHeartRateLowerLimit.swift",
        "Characteristic/SIG/CharacteristicFatBurnHeartRateUpperLimit.swift",
        "Characteristic/SIG/CharacteristicFirmwareRevisionString.swift",
        "Characteristic/SIG/CharacteristicFirstName.swift",
        "Characteristic/SIG/CharacteristicFitnessMachineFeature.swift",
        "Characteristic/SIG/CharacteristicFitnessMachineStatus.swift",
        "Characteristic/SIG/CharacteristicFiveZoneHeartRateLimits.swift",
        "Characteristic/SIG/CharacteristicFloorNumber.swift",
        "Characteristic/SIG/CharacteristicGender.swift",
        "Characteristic/SIG/CharacteristicGustFactor.swift",
        "Characteristic/SIG/CharacteristicHTTPControlPoint.swift",
        "Characteristic/SIG/CharacteristicHTTPEntityBody.swift",
        "Characteristic/SIG/CharacteristicHTTPHeaders.swift",
        "Characteristic/SIG/CharacteristicHTTPSSecurity.swift",
        "Characteristic/SIG/CharacteristicHTTPStatusCode.swift",
        "Characteristic/SIG/CharacteristicHardwareRevisionString.swift",
        "Characteristic/SIG/CharacteristicHeartRateControlPoint.swift",
        "Characteristic/SIG/CharacteristicHeartRateMax.swift",
        "Characteristic/SIG/CharacteristicHeartRateMeasurement.swift",
        "Characteristic/SIG/CharacteristicHeatIndex.swift",
        "Characteristic/SIG/CharacteristicHeight.swift",
        "Characteristic/SIG/CharacteristicHipCircumference.swift",
        "Characteristic/SIG/CharacteristicHumidity.swift",
        "Characteristic/SIG/CharacteristicIndoorBikeData.swift",
        "Characteristic/SIG/CharacteristicIntermediateCuffPressure.swift",
        "Characteristic/SIG/CharacteristicIntermediateTemperature.swift",
        "Characteristic/SIG/CharacteristicLanguage.swift",
        "Characteristic/SIG/CharacteristicLastName.swift",
        "Characteristic/SIG/CharacteristicLatitude.swift",
        "Characteristic/SIG/CharacteristicLocalEastCoordinate.swift",
        "Characteristic/SIG/CharacteristicLocalNorthCoordinate.swift",
        "Characteristic/SIG/CharacteristicLocalTimeInformation.swift",
        "Characteristic/SIG/CharacteristicLocationName.swift",
        "Characteristic/SIG/CharacteristicLocationNavigationFeature.swift",
        "Characteristic/SIG/CharacteristicLongitude.swift",
        "Characteristic/SIG/CharacteristicMagneticDeclination.swift",
        "Characteristic/SIG/CharacteristicManufacturerNameString.swift",
        "Characteristic/SIG/CharacteristicMaximumRecommendedHeartRate.swift",
        "Characteristic/SIG/CharacteristicMeasurementInterval.swift",
        "Characteristic/SIG/CharacteristicModelNumberString.swift",
        "Characteristic/SIG/CharacteristicNetworkAvailability.swift",
        "Characteristic/SIG/CharacteristicNewAlert.swift",
        "Characteristic/SIG/CharacteristicObjectName.swift",
        "Characteristic/SIG/CharacteristicObjectSize.swift",
        "Characteristic/SIG/CharacteristicPnPID.swift",
        "Characteristic/SIG/CharacteristicPollenConcentration.swift",
        "Characteristic/SIG/CharacteristicPosition2D.swift",
        "Characteristic/SIG/CharacteristicPosition3D.swift",
        "Characteristic/SIG/CharacteristicPressure.swift",
        "Characteristic/SIG/CharacteristicRainfall.swift",
        "Characteristic/SIG/CharacteristicRestingHeartRate.swift",
        "Characteristic/SIG/CharacteristicRingerSetting.swift",
        "Characteristic/SIG/CharacteristicRowerData.swift",
        "Characteristic/SIG/CharacteristicScanIntervalWindow.swift",
        "Characteristic/SIG/CharacteristicScanRefresh.swift",
        "Characteristic/SIG/CharacteristicSensorLocation.swift",
        "Characteristic/SIG/CharacteristicSerialNumberString.swift",
        "Characteristic/SIG/CharacteristicSoftwareRevisionString.swift",
        "Characteristic/SIG/CharacteristicSportTypeForAerobicAndAnaerobicThresholds.swift",
        "Characteristic/SIG/CharacteristicStairClimberData.swift",
        "Characteristic/SIG/CharacteristicStepClimberData.swift",
        "Characteristic/SIG/CharacteristicString.swift",
        "Characteristic/SIG/CharacteristicSupportedHeartRateRange.swift",
        "Characteristic/SIG/CharacteristicSupportedInclinationRange.swift",
        "Characteristic/SIG/CharacteristicSupportedPowerRange.swift",
        "Characteristic/SIG/CharacteristicSupportedResistanceLevel.swift",
        "Characteristic/SIG/CharacteristicSupportedSpeedRange.swift",
        "Characteristic/SIG/CharacteristicTemperature.swift",
        "Characteristic/SIG/CharacteristicTemperatureCelsius.swift",
        "Characteristic/SIG/CharacteristicTemperatureFahrenheit.swift",
        "Characteristic/SIG/CharacteristicTemperatureMeasurement.swift",
        "Characteristic/SIG/CharacteristicTemperatureType.swift",
        "Characteristic/SIG/CharacteristicThreeZoneHeartRateLimits.swift",
        "Characteristic/SIG/CharacteristicTimeSource.swift",
        "Characteristic/SIG/CharacteristicTimeUpdateControlPoint.swift",
        "Characteristic/SIG/CharacteristicTimeUpdateState.swift",
        "Characteristic/SIG/CharacteristicTimeWithDst.swift",
        "Characteristic/SIG/CharacteristicTimeZone.swift",
        "Characteristic/SIG/CharacteristicTrainingStatus.swift",
        "Characteristic/SIG/CharacteristicTreadmillData.swift",
        "Characteristic/SIG/CharacteristicTrueWindDirection.swift",
        "Characteristic/SIG/CharacteristicTrueWindSpeed.swift",
        "Characteristic/SIG/CharacteristicTwoZoneHeartRateLimit.swift",
        "Characteristic/SIG/CharacteristicTxPowerLevel.swift",
        "Characteristic/SIG/CharacteristicUVIndex.swift",
        "Characteristic/SIG/CharacteristicUniformResourceIdentifier.swift",
        "Characteristic/SIG/CharacteristicUnreadAlertStatus.swift",
        "Characteristic/SIG/CharacteristicUserIndex.swift",
        "Characteristic/SIG/CharacteristicV02Max.swift",
        "Characteristic/SIG/CharacteristicWaistCircumference.swift",
        "Characteristic/SIG/CharacteristicWeight.swift",
        "Characteristic/SIG/CharacteristicWeightMeasurement.swift",
        "Characteristic/SIG/CharacteristicWeightScaleFeature.swift",
        "Characteristic/SIG/CharacteristicWindChill.swift",
        "CompanyIdentifier/CompanyIdentifier.swift",
        "CompanyIdentifier/CompanyIdentifierExtension.swift",
        "CompanyIdentifier/CompanyIdentifierExtensionMore.swift",
        "CompanyIdentifier/CompanyIdentifierNonAssigned.swift",
        "CompanyIdentifier/CompanyIdentifierSupportedExtension.swift",
        "Errors.swift",
        "Extensions/DataExtension.swift",
        "Extensions/Resolutionable.swift",
        "Extensions/StringExtension.swift",
        "Extensions/UInt8Extension.swift",
        "Extensions/UUIDExtension.swift",
        "GAP/GapAdvertisingType.swift",
        "GAP/GapDataType.swift",
        "GAP/GapEventType.swift",
        "GAP/PeerAddress.swift",
        "HomeKit/Service/ServiceHapAccessoryInformation.swift",
        "HomeKit/Service/ServiceHapAirPurifier.swift",
        "HomeKit/Service/ServiceHapAirQualitySensor.swift",
        "HomeKit/Service/ServiceHapBatteryService.swift",
        "HomeKit/Service/ServiceHapCameraRtpStreamManagement.swift",
        "HomeKit/Service/ServiceHapCarbonDioxideSensor.swift",
        "HomeKit/Service/ServiceHapCarbonMonoxideSensor.swift",
        "HomeKit/Service/ServiceHapContactSensor.swift",
        "HomeKit/Service/ServiceHapDoor.swift",
        "HomeKit/Service/ServiceHapDoorbell.swift",
        "HomeKit/Service/ServiceHapFan.swift",
        "HomeKit/Service/ServiceHapFaucet.swift",
        "HomeKit/Service/ServiceHapFilterMaintenance.swift",
        "HomeKit/Service/ServiceHapGarageDoorOpener.swift",
        "HomeKit/Service/ServiceHapHeaterCooler.swift",
        "HomeKit/Service/ServiceHapHumidifierDehumidifier.swift",
        "HomeKit/Service/ServiceHapHumiditySensor.swift",
        "HomeKit/Service/ServiceHapIrrigationSystem.swift",
        "HomeKit/Service/ServiceHapLeakSensor.swift",
        "HomeKit/Service/ServiceHapLightSensor.swift",
        "HomeKit/Service/ServiceHapLightbulb.swift",
        "HomeKit/Service/ServiceHapLockManagement.swift",
        "HomeKit/Service/ServiceHapLockMechanism.swift",
        "HomeKit/Service/ServiceHapMicrophone.swift",
        "HomeKit/Service/ServiceHapMotionSensor.swift",
        "HomeKit/Service/ServiceHapOccupancySensor.swift",
        "HomeKit/Service/ServiceHapOutlet.swift",
        "HomeKit/Service/ServiceHapPairing.swift",
        "HomeKit/Service/ServiceHapProtocolInformationService.swift",
        "HomeKit/Service/ServiceHapSecuritySystem.swift",
        "HomeKit/Service/ServiceHapServiceLabel.swift",
        "HomeKit/Service/ServiceHapSlat.swift",
        "HomeKit/Service/ServiceHapSmokeSensor.swift",
        "HomeKit/Service/ServiceHapSpeaker.swift",
        "HomeKit/Service/ServiceHapStatelessProgrammableSwitch.swift",
        "HomeKit/Service/ServiceHapSwitch.swift",
        "HomeKit/Service/ServiceHapTemperatureSensor.swift",
        "HomeKit/Service/ServiceHapThermostat.swift",
        "HomeKit/Service/ServiceHapValve.swift",
        "HomeKit/Service/ServiceHapWindow.swift",
        "HomeKit/Service/ServiceHapWindowCovering.swift",
        "HomeKit/Service/ServiceHomeKitProtocolExtension.swift",
        "HomeKit/Types/AccessoryCategory.swift",
        "HomeKit/Types/HomeKitPairingErrors.swift",
        "HomeKit/Types/HomeKitPairingMethods.swift",
        "HomeKit/Types/HomeKitSoftwareAuthenticationTlvType.swift",
        "HomeKit/Types/PairingTlvType.swift",
        "HomeKit/Types/TlvFormat.swift",
        "ManufacturerData/AppleBeaconExtension.swift",
        "ManufacturerData/ManufacturerData.swift",
        "ManufacturerData/ManufacturerDataAltBeacon.swift",
        "ManufacturerData/ManufacturerDataAppleHomeKit.swift",
        "ManufacturerData/ManufacturerDataAppleHomeKitEncryptedNotification.swift",
        "ManufacturerData/ManufacturerDataAppleiBeacon.swift",
        "ManufacturerData/ManufacturerDataGymConnect.swift",
        "ManufacturerData/ManufacturerDataPolarHeartRate.swift",
        "MemberIdentifier/MemberIdentifier.swift",
        "MemberIdentifier/MemberIdentifierSupportedExtension.swift",
        "Mesh/Beacon/MeshBeaconUnit.swift",
        "Mesh/Characteristic/CharacteristicMeshProvisioningDataIn.swift",
        "Mesh/Characteristic/CharacteristicMeshProvisioningDataOut.swift",
        "Mesh/Characteristic/CharacteristicMeshProxyDataIn.swift",
        "Mesh/Characteristic/CharacteristicMeshProxyDataOut.swift",
        "Mesh/Provisioning/ProvisioningAuthentication.swift",
        "Mesh/Provisioning/ProvisioningData.swift",
        "Mesh/Provisioning/ProvisioningDataUnitCapabilities.swift",
        "Mesh/Provisioning/ProvisioningDataUnitInvite.swift",
        "Mesh/Provisioning/ProvisioningDataUnitStart.swift",
        "Mesh/Provisioning/ProvisioningDataUnitType.swift",
        "Mesh/Provisioning/ProvisioningDataUnits.swift",
        "Mesh/Proxy/ProxyDataUnits.swift",
        "Mesh/Proxy/ProxyMessageType.swift",
        "Mesh/Types/MeshModelIdentifier.swift",
        "Mesh/Types/MeshModelIdentifierExtension.swift",
        "Mesh/Types/MeshModelIdentifierVendorExtension.swift",
        "Mesh/Types/MeshOutOfBandInformation.swift",
        "Mesh/Types/MeshTransitionTime.swift",
        "Mesh/Types/Message/MeshMessage.swift",
        "Mesh/Types/Message/MeshMessageGenericDelta.swift",
        "Mesh/Types/Message/MeshMessageGenericLevel.swift",
        "Mesh/Types/Message/MeshMessageGenericOnOff.swift",
        "Service.swift",
        "Service/Custom/ServiceAppleMidi.swift",
        "Service/Custom/ServiceCustomExtension.swift",
        "Service/Custom/ServiceCycleOps.swift",
        "Service/Custom/ServiceDropcam.swift",
        "Service/Custom/ServiceEliteTrainer.swift",
        "Service/Custom/ServiceGoogleGlass.swift",
        "Service/Custom/ServiceGymConnect.swift",
        "Service/Custom/ServiceKomoot.swift",
        "Service/Custom/ServiceMyoClassifierEvent.swift",
        "Service/Custom/ServiceMyoControl.swift",
        "Service/Custom/ServiceMyoImu.swift",
        "Service/Custom/ServiceMyoRawEMGData.swift",
        "Service/Custom/ServiceNordicLegacyDeviceFirmwareUpdate.swift",
        "Service/Custom/ServiceNordicSecureDeviceFirmwareUpdate.swift",
        "Service/Custom/ServiceNorthPoleAweDiagnostics.swift",
        "Service/Custom/ServiceNorthPoleAweHeartRate.swift",
        "Service/Custom/ServiceTacxAntFec.swift",
        "Service/Custom/ServiceWahooFitnessGEMModuleFirmwareUpdate.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsFirmwareUpdate.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsSensorTagAccelerometer.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsSensorTagBarometer.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsSensorTagControl.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsSensorTagGyroscope.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsSensorTagHumidity.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsSensorTagMagnetometer.swift",
        "Service/Custom/TexasInstruments/ServiceTexasInstrumentsSensorTagTemperature.swift",
        "Service/SIG/ServiceAlertNotification.swift",
        "Service/SIG/ServiceAutomationInputOutput.swift",
        "Service/SIG/ServiceBattery.swift",
        "Service/SIG/ServiceBloodPressure.swift",
        "Service/SIG/ServiceBodyComposition.swift",
        "Service/SIG/ServiceBondManagement.swift",
        "Service/SIG/ServiceContinuousGlucoseMonitoring.swift",
        "Service/SIG/ServiceCurrentTime.swift",
        "Service/SIG/ServiceCyclingPower.swift",
        "Service/SIG/ServiceCyclingSpeedAndCadence.swift",
        "Service/SIG/ServiceDeviceInformation.swift",
        "Service/SIG/ServiceEnvironmentalSensing.swift",
        "Service/SIG/ServiceExtension.swift",
        "Service/SIG/ServiceFitnessMachine.swift",
        "Service/SIG/ServiceGenericAccess.swift",
        "Service/SIG/ServiceGenericAttribute.swift",
        "Service/SIG/ServiceGlucose.swift",
        "Service/SIG/ServiceHealthThermometer.swift",
        "Service/SIG/ServiceHeartRate.swift",
        "Service/SIG/ServiceHttpProxy.swift",
        "Service/SIG/ServiceHumanInterfaceDevice.swift",
        "Service/SIG/ServiceImmediateAlert.swift",
        "Service/SIG/ServiceIndoorPositioning.swift",
        "Service/SIG/ServiceInsulinDelivery.swift",
        "Service/SIG/ServiceInternetProtocolSupport.swift",
        "Service/SIG/ServiceLinkLoss.swift",
        "Service/SIG/ServiceLocationAndNavigation.swift",
        "Service/SIG/ServiceMeshProvisioning.swift",
        "Service/SIG/ServiceMeshProxy.swift",
        "Service/SIG/ServiceNextDSTChange.swift",
        "Service/SIG/ServiceObjectTransfer.swift",
        "Service/SIG/ServicePhoneAlertStatus.swift",
        "Service/SIG/ServicePulseOximeter.swift",
        "Service/SIG/ServiceReconnectionConfiguration.swift",
        "Service/SIG/ServiceReferenceTimeUpdate.swift",
        "Service/SIG/ServiceRunningSpeedAndCadence.swift",
        "Service/SIG/ServiceScanParameters.swift",
        "Service/SIG/ServiceTransportDiscovery.swift",
        "Service/SIG/ServiceTxPower.swift",
        "Service/SIG/ServiceUserData.swift",
        "Service/SIG/ServiceWeightScale.swift",
        "ServiceData.swift",
        "ServiceData/ServiceDataFitnessMachine.swift",
        "ServiceData/ServiceDataMeshProvisioning.swift",
        "Types/AppleDeviceType.swift",
        "Types/BatteryTypes.swift",
        "Types/BloodPressureMeasurementStatus.swift",
        "Types/BluetoothAlertTypes.swift",
        "Types/BluetoothAppearance.swift",
        "Types/BluetoothAppearanceCategory.swift",
        "Types/BluetoothGender.swift",
        "Types/BluetoothSensorLocations.swift",
        "Types/BluetoothTimeZones.swift",
        "Types/CodingKeys.swift",
        "Types/DSTOffset.swift",
        "Types/DateTimeType.swift",
        "Types/DayOfWeekType.swift",
        "Types/FitnessMachineControl/FitnessMachineControlCode.swift",
        "Types/FitnessMachineControl/FitnessMachineControlProcedure.swift",
        "Types/FitnessMachineControl/FitnessMachineControlResponseTypes.swift",
        "Types/FitnessMachineStatus/FitnessMachineStatusCode.swift",
        "Types/FitnessMachineStatus/FitnessMachineStatusValue.swift",
        "Types/FitnessMachineTargetTypes.swift",
        "Types/FitnessMachineTypes.swift",
        "Types/GymConnectEquipmentState.swift",
        "Types/GymConnectEquipmentType.swift",
        "Types/HeartRateTypes.swift",
        "Types/MonthType.swift",
        "Types/TemperatureTypes.swift",
        "Types/UserType.swift",
        "Types/YearMonthDay.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.