The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ICCReader, reference master (15425e), with Swift 6.1 for Wasm on 29 May 2025 05:20:09 UTC.

Swift 6 data race errors: 267

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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 2>&1

Build Log

    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     /// HSV ‘HSV ’ 48535620h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:46:23: warning: static property 'hsv' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// HSV ‘HSV ’ 48535620h
 46 |     public static let hsv: ICCSignature = "HSV "
    |                       |- warning: static property 'hsv' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hsv' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     /// HLS ‘HLS ’ 484C5320h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:49:23: warning: static property 'hls' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 47 |
 48 |     /// HLS ‘HLS ’ 484C5320h
 49 |     public static let hls: ICCSignature = "HLS "
    |                       |- warning: static property 'hls' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'hls' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |
 51 |     /// CMYK ‘CMYK’ 434D594Bh
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:52:23: warning: static property 'cmyk' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 50 |
 51 |     /// CMYK ‘CMYK’ 434D594Bh
 52 |     public static let cmyk: ICCSignature = "CMYK"
    |                       |- warning: static property 'cmyk' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cmyk' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |
 54 |     /// CMY ‘CMY ’ 434D5920h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:55:23: warning: static property 'cmy' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 53 |
 54 |     /// CMY ‘CMY ’ 434D5920h
 55 |     public static let cmy: ICCSignature = "CMY "
    |                       |- warning: static property 'cmy' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'cmy' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |
 57 |     /// 2 colour ‘2CLR’ 32434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:58:23: warning: static property 'twoColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 56 |
 57 |     /// 2 colour ‘2CLR’ 32434C52h
 58 |     public static let twoColor: ICCSignature = "2CLR"
    |                       |- warning: static property 'twoColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'twoColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 59 |
 60 |     /// 3 colour (other than those listed above) ‘3CLR’ 33434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:61:23: warning: static property 'threeColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |     /// 3 colour (other than those listed above) ‘3CLR’ 33434C52h
 61 |     public static let threeColor: ICCSignature = "3CLR"
    |                       |- warning: static property 'threeColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'threeColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 |
 63 |     /// 4 colour (other than CMYK) ‘4CLR’ 34434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:64:23: warning: static property 'fourColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |
 63 |     /// 4 colour (other than CMYK) ‘4CLR’ 34434C52h
 64 |     public static let fourColor: ICCSignature = "4CLR"
    |                       |- warning: static property 'fourColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'fourColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 65 |
 66 |     /// 5 colour ‘5CLR’ 35434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:67:23: warning: static property 'fiveColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 65 |
 66 |     /// 5 colour ‘5CLR’ 35434C52h
 67 |     public static let fiveColor: ICCSignature = "5CLR"
    |                       |- warning: static property 'fiveColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'fiveColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 68 |
 69 |     /// 6 colour ‘6CLR’ 36434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:70:23: warning: static property 'sixColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 68 |
 69 |     /// 6 colour ‘6CLR’ 36434C52h
 70 |     public static let sixColor: ICCSignature = "6CLR"
    |                       |- warning: static property 'sixColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'sixColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 71 |
 72 |     /// 7 colour ‘7CLR’ 37434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:73:23: warning: static property 'sevenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 71 |
 72 |     /// 7 colour ‘7CLR’ 37434C52h
 73 |     public static let sevenColor: ICCSignature = "7CLR"
    |                       |- warning: static property 'sevenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'sevenColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// 8 colour ‘8CLR’ 38434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:76:23: warning: static property 'eightColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 74 |
 75 |     /// 8 colour ‘8CLR’ 38434C52h
 76 |     public static let eightColor: ICCSignature = "8CLR"
    |                       |- warning: static property 'eightColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'eightColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |
 78 |     /// 9 colour ‘9CLR’ 39434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:79:23: warning: static property 'nineColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 77 |
 78 |     /// 9 colour ‘9CLR’ 39434C52h
 79 |     public static let nineColor: ICCSignature = "9CLR"
    |                       |- warning: static property 'nineColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'nineColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 80 |
 81 |     /// 10 colour ‘ACLR’ 41434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:82:23: warning: static property 'tenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 80 |
 81 |     /// 10 colour ‘ACLR’ 41434C52h
 82 |     public static let tenColor: ICCSignature = "10CLR"
    |                       |- warning: static property 'tenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'tenColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |     /// 11 colour ‘BCLR’ 42434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:85:23: warning: static property 'elevenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 83 |
 84 |     /// 11 colour ‘BCLR’ 42434C52h
 85 |     public static let elevenColor: ICCSignature = "BCLR"
    |                       |- warning: static property 'elevenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'elevenColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 86 |
 87 |     /// 12 colour ‘CCLR’ 43434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:88:23: warning: static property 'twelveColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 |     /// 12 colour ‘CCLR’ 43434C52h
 88 |     public static let twelveColor: ICCSignature = "CCLR"
    |                       |- warning: static property 'twelveColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'twelveColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |
 90 |     /// 13 colour ‘DCLR’ 44434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:91:23: warning: static property 'thirteenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 89 |
 90 |     /// 13 colour ‘DCLR’ 44434C52h
 91 |     public static let thirteenColor: ICCSignature = "DCLR"
    |                       |- warning: static property 'thirteenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'thirteenColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 |
 93 |     /// 14 colour ‘ECLR’ 45434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:94:23: warning: static property 'fourteenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 92 |
 93 |     /// 14 colour ‘ECLR’ 45434C52h
 94 |     public static let fourteenColor: ICCSignature = "ECLR"
    |                       |- warning: static property 'fourteenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'fourteenColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 95 |
 96 |     /// 15 colour ‘FCLR’ 46434C52h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:97:23: warning: static property 'fifteenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |
 96 |     /// 15 colour ‘FCLR’ 46434C52h
 97 |     public static let fifteenColor: ICCSignature = "FCLR"
    |                       |- warning: static property 'fifteenColor' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'fifteenColor' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 98 |
 99 |     /// None 0 00000000h
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
/host/spi-builder-workspace/Sources/ICCReader/ISO 15076-1/ColorSpaceSignature.swift:100:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
 98 |
 99 |     /// None 0 00000000h
100 |     public static let none: ICCSignature = "\0\0\0\0"
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ICCSignature' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | }
102 |
/host/spi-builder-workspace/Sources/ICCReader/ICCSignature.swift:10:15: note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
 8 | import DataStream
 9 |
10 | public struct ICCSignature: Hashable, RawRepresentable, ExpressibleByStringLiteral {
   |               `- note: consider making struct 'ICCSignature' conform to the 'Sendable' protocol
11 |     public let value: String
12 |
Build complete! (19.97s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "datastream",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/hughbe/DataStream"
    }
  ],
  "manifest_display_name" : "ICCReader",
  "name" : "ICCReader",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ICCReader",
      "targets" : [
        "ICCReader"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ICCReaderTests",
      "module_type" : "SwiftTarget",
      "name" : "ICCReaderTests",
      "path" : "Tests/ICCReaderTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/AcademySoftwareFoundation/OpenColorIO/icc-test-1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/AcademySoftwareFoundation/OpenColorIO/icc-test-3.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon EOS 20D.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon EOS 40D.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon EOS 450D.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon EOS 550D.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon EOS 5D.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon EOS-1D Mark III.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon PowerShot G10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Canon PowerShot G12.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Nikon D200.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Nikon D3000.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Nikon D3100.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Nikon D3S.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Nikon D700.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Nikon D7000.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Olympus E-P2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Panasonic DMC-FZ150.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Panasonic DMC-FZ35.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Panasonic DMC-FZ38.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Panasonic DMC-G1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Panasonic DMC-G3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Panasonic DMC-GH1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Panasonic DMC-GH2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Pentax K200D.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Sony DSLR-A700.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Sony DSLR-A900.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/Sony SLT-A55V.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd14-bl15-crop-matrix-gamma-wp10.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd14-bl15-crop-matrix-gamma-wp11.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd14-bl15-crop-matrix-gamma-wp12.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd1_merrill_cloudy8140-CROP-WP10.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd1_merrill_cloudy8140-CROP-WP11.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd1_merrill_sunny8161-crop-wp10.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd1_merrill_sunny8161-crop-wp11.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd1_merrill_tungsten8130-CROP-WP10.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/input/sd1_merrill_tungsten8130-CROP-WP11.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/DCI-P3 D65.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/DCI-P3 Theater.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_ACES-AP0.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_ACES-AP1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_Best.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_Beta.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_Bruce.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_Large.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_Medium.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_Rec2020.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_Wide.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv2_sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_ACES-AP0.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_ACES-AP1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_Best.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_Beta.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_Bruce.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_Large.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_Medium.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_Rec2020.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_Wide.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Beep6581/RawTherapee/output/RTv4_sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/CreunaFI/color-space-fixer/generic-cmyk.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Black & White.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Blue Tone.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Displays/Color LCD-77E200AD-B0E6-0317-4BBF-F8B53DA3952C.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Displays/LEN L28u-30-BB28FBA7-6043-56DF-22BF-23B9DBFFD80C.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Displays/LEN L28u-30-FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Displays/Nameless Display-BB28FBA7-6043-56DF-22BF-23B9DBFFD80C.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Displays/Nameless Display-CB7164BC-CB7A-34F0-A46F-A525E34EABC0.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Displays/XGIMI TV-CB7164BC-CB7A-34F0-A46F-A525E34EABC0.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Displays/XGIMI TV-FFFFFFFF-FFFF-FFFF-FFFF-FFFFFFFFFFFF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Gray Tone.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Lightness Decrease.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Lightness Increase.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/Sepia Tone.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/ACESCG Linear.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/AdobeRGB1998.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/DCI(P3) RGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/Display P3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/Generic CMYK Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/Generic Gray Gamma 2.2 Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/Generic Gray Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/Generic Lab Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/Generic RGB Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/Generic XYZ Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/ITU-2020.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/ITU-709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/ROMM RGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/System/sRGB Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Mac/WebSafeColors.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/OpenICC/xcalib/AdobeGammaTest.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/OpenICC/xcalib/bluish.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/OpenICC/xcalib/gamma_1_0.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/OpenICC/xcalib/gamma_2_2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/OpenICC/xcalib/gamma_2_2_bright.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/OpenICC/xcalib/gamma_2_2_lowContrast.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/CMYK-3DLUTs/CMYK_3DLUTs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/CMYK-3DLUTs/CMYK_3DLUTs2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/CameraModel.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/ElevenChanKubelkaMunk.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/RGBWProjector.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/argbCalc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/cm.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/sbgrCalcTest.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/srgbCalc++Test.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Calc/srgbCalcTest.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/GrayGSDF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/LCDDisplay.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/LaserProjector.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/Rec2020rgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/Rec2020rgbDirect.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/Rec2100HlgFull.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/Rec2100HlgNarrow.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/RgbGSDF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/sRGB_D65_MAT-300lx.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Display/sRGB_D65_MAT-500lx.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Encoding/ISO22028-Encoded-bg-sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Encoding/ISO22028-Encoded-sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Encoding/sRgbEncoding.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Encoding/sRgbEncodingOverrides.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Lab_float-D65_2deg-Part1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Lab_float-IllumA_2deg-Part2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Lab_int-D65_2deg-Part1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Lab_int-IllumA_2deg-Part2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Rec2100HlgFull-Part1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Rec2100HlgFull-Part2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Rec2100HlgFull-Part3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Spec400_10_700-D50_2deg-Part1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/Spec400_10_700-D93_2deg-Part2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/XYZ_float-D65_2deg-Part1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/XYZ_float-IllumA_2deg-Part2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/XYZ_int-D65_2deg-Part1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/ICS/XYZ_int-IllumA_2deg-Part2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Named/SparseMatrixNamedColor.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Named/SparseMatrixNamedColor2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/Overprint/17ChanPart1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Lab_float-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Lab_float-D93_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Lab_int-D65_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Lab_int-IllumA_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Lab_int-IllumA_2deg-MtxCAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec380_10_730-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec380_10_730-D65_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec380_1_780-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec380_5_780-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-B_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-B_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-B_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_10deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_10deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_20yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_40yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_60yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D50_80yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_10deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_10deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_20yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_40yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_60yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D65_80yo2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D93_10deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D93_10deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D93_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-D93_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DB_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DB_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DB_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DG_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DG_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DG_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DR_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DR_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-DR_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-F11_2deg-CAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-F11_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-G_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-G_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-G_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-IllumA_10deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-IllumA_10deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-IllumA_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-IllumA_2deg-CAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-IllumA_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-N_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-N_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-N_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-R1_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-R1_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-R1_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-R2_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-R2_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-R2_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-Y_2deg-Abs.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-Y_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/Spec400_10_700-Y_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-CSAJ_A_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-CSAJ_A_2deg-LutCAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-CSAJ_A_2deg-MtxCAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-CSAJ_D65_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-CSAJ_D65_2deg-LutCAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-CSAJ_D65_2deg-MtxCAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-D65_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-IllumA_2deg-CAT02.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-IllumA_2deg-LutCAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_float-IllumA_2deg-MtxCAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_int-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_int-D65_2deg-MAT-Lvl2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/PCC/XYZ_int-D65_2deg-MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/SpecRef/RefDecC.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/SpecRef/RefDecH.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/SpecRef/RefIncW.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/SpecRef/SixChanInputRef.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/SpecRef/argbRef.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/SpecRef/srgbRef.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/mcs/17ChanWithSpots-MVIS.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/mcs/18ChanWithSpots-MVIS.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/mcs/6ChanSelect-MID.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/RefIccMAX/Testing/sRGB_IEC61966_21.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/RSWOP.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/apl12600.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/epssproh.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/epsspron.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg10w50.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg10w65.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg10w93.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg14w50.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg14w65.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg14w93.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg18w50.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg18w65.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg18w93.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg22w50.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg22w65.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gdg22w93.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gend9318.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/gend9322.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1200bd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1200bp.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1200d.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1200nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1200np.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1200p.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600bd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600bg.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600bp.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600cn.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600cp.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600d.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600g.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600mn.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600mp.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600ng.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600np.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp1600p.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp310nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp310ng.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp320nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp320ng.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp500nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp500ng.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp540nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp540ng.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp540np.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp550nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp550ng.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp560nd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp560ng.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp850cn.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp850cp.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp870cxn.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hp870cxp.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hpcl5mbp.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hpcl5mnd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hpclj.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hpclj5.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hpclj5mn.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hpcljbd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/hpcljnd.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/lx1275d.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/mnebug15.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/mnebug18.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/mnebug21.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/mnp22g15.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/mnp22g18.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/mnp22g21.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/ntscic22.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/radd5018.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/srgb.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/tek3pxi.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/tekph560.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/tekph600.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/tkph340d.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/tkph340h.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/tkph350d.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/tkph550d.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/xrx4915d.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/xrx4915h.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/Windows Server/xrxdpc55.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/Windows/sRGB Color Space Profile.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/YoshikuniJujo/iccp-file/KN_PX5V_PIC_TPS_DGSMP.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/YoshikuniJujo/iccp-file/benq_ew2420.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/YoshikuniJujo/iccp-file/e4800_PhotoRag.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/YoshikuniJujo/iccp-file/epson_4000_shil_shilky_330gsm.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/YoshikuniJujo/iccp-file/iccp.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/YoshikuniJujo/iccp-file/igsg_x800_iso_chromeX.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/YoshikuniJujo/iccp-file/pic1_ppd177_pro9000.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACES-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ACEScg-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/AllColorsRGB-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/CIERGB-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/ClayRGB-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Gray-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/IdentityRGB-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Lab-D50-Identity-elle-V2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Lab-D50-Identity-elle-V4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/LargeRGB-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec2020-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec709-elle-V2-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/Rec709-elle-V4-rec709.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/XYZ-D50-Identity-elle-V4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V2-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V2-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V2-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V2-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V2-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V4-g10.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V4-g18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V4-g22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V4-labl.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/ellelstone/elles_icc_profiles/sRGB-elle-V4-srgbtrc.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/AnimePalette.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Asus MS246H User Mode.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Asus MS246H sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/BenQ XL2410T - Standard.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/BenQ XL2410T - sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/BlacklightPoster.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/CobaltCarmine.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/ColorNegative.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Crossover Blade Q27 1.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Dell_U2410_sRGB_mode.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/GoldBlue.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/GoldCrimson.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/GreenRed.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/HP ZR24W - sRGB Mode v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/HP ZR24W - sRGB Mode.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/NEC PA271W-SV - Adobe RGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/NEC PA271W-SV - Full.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/NEC PA271W-SV - High Bright.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/NEC PA271W-SV - sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/P3D65.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Pastel8Hues.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Philips BDM4065UC SmartUniformity mode.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Philips BDM4065UC user define mode.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/RedBlueYelllow.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/SiennaBlue.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Smokey.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/TealMagentaGold.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/TotalInkPreview.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/TurquoiseSepia.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Viewsonic VP2770-LED Native.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Viewsonic VP2770-LED User Color.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/Viewsonic VP2770-LED sRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/acer_al2616wd.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/acer_predator_xb240h_user.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/aoc_i2353_warm.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/apple_30_cinema_user.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/apple_imac27.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/asus_pa246q_srgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/asus_rog_swift_pg348q.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/asus_x502ca_user.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_gw2450hm.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_gw2450hm_normal_mode.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_gw2765ht.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_pg2401pt_adobergb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_pg2401pt_srgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_xl2420t.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_xl2720z.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/benq_xl2730z.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/dell_p2414h.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/dell_p2714h.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/dell_u2211h.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/dell_u2311h_custom.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/dell_u2410_user4.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/dell_u2417hj.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/eizo_sx2762w_srgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/nec_20wgx2_user1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/nec_ea231wmi_srgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/nec_p241w_srgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/samsung_s27b970d_highbright.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/samsung_s27b970d_srgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/samsung_s27b970d_standard.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/holoto/ICC-Profiles/viewsonic_vp2780-4k.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/josephholmes/Ekta Space PS 5, J Holmes.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/kornelski/rust-lcms2/gray18.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/kornelski/rust-lcms2/sGray.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/kornelski/rust-lcms2/tinysrgb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/lovell/icc/ILFORD_CANpro-4000_GPGFG_ProPlatin.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/lovell/icc/sRGB_IEC61966-2-1_black_scaled.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/TestCLT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/bad.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/bad_mpe.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/crayons.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/ibm-t61.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/new.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/test1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/test2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/test3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/test4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/test5.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/mm2/Little-CMS/toosmall.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/CoatedFOGRA27.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/CoatedFOGRA39.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/CoatedGRACoL2006.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/JapanColor2001Coated.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/JapanColor2001Uncoated.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/JapanColor2002Newspaper.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/JapanColor2003WebCoated.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/JapanWebCoated.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/USWebCoatedSWOP.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/USWebUncoated.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/UncoatedFOGRA29.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/WebCoatedFOGRA28.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/WebCoatedSWOP2006Grade3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/CMYK/WebCoatedSWOP2006Grade5.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/RGB/AppleRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/RGB/ColorMatchRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/RGB/PAL_SECAM.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/RGB/SMPTE-C.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/RGB/VideoHD.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/RGB/VideoNTSC.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Adobe/RGB/VideoPAL.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI Offset Profiles - Supplement 2020 - Surface Finishing/PSO_Coated_v3_Glossy_laminate.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI Offset Profiles - Supplement 2020 - Surface Finishing/PSO_Coated_v3_Matte_laminate.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOcoated175bb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOcoated175sb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOcoatedbb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOcoatedsb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoated175bb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoated175sb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoatedbb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoatedsb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoatedyellowish175bb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoatedyellowish175sb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoatedyellowishbb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOuncoatedyellowishsb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOwebcoated175bb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOwebcoated175sb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOwebcoatedbb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ECI_Offset_2002-2003_Expert/ISOwebcoatedsb.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/PSRgravureHWC/Profile/PSRgravureHWC.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/PSRgravureLWC/Profile/PSRgravureLWC.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/PSRgravureMF/Profile/PSRgravureMF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/PSRgravureSC/Profile/PSRgravureSC.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eciCMYK.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eciRGB_v2_profile/eciRGB_v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eciRGB_v2_profile/eciRGB_v2_ICCv4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eciRGBv10/ECI-RGB.V1.0.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eci_Gravure_PSR_V2_M1_2020/ICC-Profile/PSR_LWC_PLUS_V2_M1_v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eci_Gravure_PSR_V2_M1_2020/ICC-Profile/PSR_LWC_STD_V2_M1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eci_Gravure_PSR_V2_M1_2020/ICC-Profile/PSR_MF_V2_M1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eci_Gravure_PSR_V2_M1_2020/ICC-Profile/PSR_SC_PLUS_V2_M1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/eci_Gravure_PSR_V2_M1_2020/ICC-Profile/PSR_SC_STD_V2_M1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ecicmyk_devicelinkprofiles_2017-08-27/ISOcoated_v2_to_eciCMYK_DeviceLink.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ecicmyk_devicelinkprofiles_2017-08-27/eciCMYK_to_PSOcoated_v3_DeviceLink.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/ecicmyk_devicelinkprofiles_2017-08-27/eciCMYK_to_PSOuncoated_v3_DeviceLink.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/iso-coated_v2_to_psocoated_v3_devicelink/ISOcoated_v2_to_PSOcoated_v3_DeviceLink.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/pso-coated_v3/PSOcoated_v3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/pso-coated_v3_to_isocoated_v2_devicelink/PSOcoated_v3_to_ISOcoated_v2_DeviceLink.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/pso-uncoated_v3_FOGRA52/PSOuncoated_v3_FOGRA52.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/European Color Initiative/pso_sc-b_paper_v3/PSOsc-b_paper_v3_FOGRA54.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPD70_SF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPD70_ST.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPD70_UF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPD90_ST.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPD90_UF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPK60_ST.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPK60_UF.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/Mitsubishi/CPM1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/Adobe98.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/Alternate/MelissaRGBD65.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/Alternate/ProPhoto22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/Alternate/ProPhoto22D65.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/Alternate/ProPhotoD65.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/Alternate/WideGamutD65.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/Alternate/sRGB Gamma22.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/CIERGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/MelissaRGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/ProPhoto.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/chromasoft/WideGamut.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Creating scene referred images using Photoshop CS3  /ISO22028_3_RIMM_RGB_exCR.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Creating scene referred images using Photoshop CS3  /linear_RIMM_RGB_v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/D65channelscaledXYZ.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Exchange space for 'pure digital' printing  /PRMG_v2.0.1_MR.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/FluorescentNamedColor.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /CGATS21_CRPC1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /CGATS21_CRPC2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /CGATS21_CRPC3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /CGATS21_CRPC4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /CGATS21_CRPC5.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /CGATS21_CRPC6.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /CGATS21_CRPC7.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /Coated_Fogra39L_VIGC_260.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /Coated_Fogra39L_VIGC_300.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /GRACoL2006_Coated1v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /GRACoL2013UNC_CRPC3.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /GRACoL2013_CRPC6.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /SC_paper_eci.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /SNAP2007.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /SWOP2006_Coated3v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /SWOP2006_Coated5v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /SWOP2013C3_CRPC5.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /Uncoated_Fogra47L_VIGC_260.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ICC Profile Registry  /Uncoated_Fogra47L_VIGC_300.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Lab-D50_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/NamedColor.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/PRMG RGB gamut warning profile - sRGB based/PRMG_RGB-sRGB_based.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Probe Profile  /Probev1_ICCv2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Probe Profile  /Probev1_ICCv4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Probe Profile  /Probev2_ICCv4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/ROMM RGB  /ISO22028-2_ROMM-RGB.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Rec 709 Reference Display  /ITU_RBT709ReferenceDisplay.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/SixChanCameraRef.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Spec400_10_700-D50-Abs_10deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Spec400_10_700-IllumA-Abs_10deg (1).icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Spec400_10_700-IllumA-Abs_10deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/Spec400_10_700-IllumA-Abs_2deg.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/XYZprofiles/D50_XYZ.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/XYZprofiles/D55_XYZ.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/XYZprofiles/D65_XYZ.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/sRGB profiles/sRGB2014.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/sRGB profiles/sRGB_v4_ICC_preference.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/sRGB profiles/sRGB_v4_ICC_preference_displayclass.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/sRGB_D65_MAT.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/sRGB_D65_colorimetric.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/sRGB_ICC_v4_Appearance.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/color/sRGB_ISO22028.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/GRACoL2006_Coated1_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/SWOP2006_Coated3_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/SWOP2006_Coated5_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/Web_SC_FOGRA40_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/coated_FOGRA39_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/uncoatedYellow_FOGRA30_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/uncoated_FOGRA29_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/Profile_GCR_bas/webcoated_FOGRA28_GCR_bas.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/ISOcoated_v2_300_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/ISOcoated_v2_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/ISOcoated_v2_grey1c_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/ISOnewspaper_v4_26_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/ISOuncoatedyellowish_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_Coated_300_NPscreen_ISO12647_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_Coated_NPscreen_ISO12647_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_LWC_Improved_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_LWC_Standard_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_MFC_Paper_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_SNP_Paper_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_Uncoated_ISO12647_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/PSO_Uncoated_NPscreen_ISO12647_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/colormanagement/basICColor_Offset_2009/SC_paper_bas.ICC",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Agfa_d-lab2_Fuji-CA-DPII_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Agfa_d-lab2_Fuji-CA_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FF_Album_HD_Glossy.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FF_Album_Lustre.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FF_CA_G_L.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FF_DPII_G_L.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FF_DPII_M_S.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FujiClear.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FujiFlex.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Chromira_FujiTrans.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst-Epsilon_Fuji-CA-DPII.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Lambda_Fuji-CA-DPII_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Lambda_Fuji-CA-Pearl_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Lambda_Fuji-CA-Writable_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Lambda_FujiClear_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Lambda_FujiFlex_v3aNeu.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Lambda_FujiTrans_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Theta50_Fuji-CA-Album_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Theta50_Fuji-CA-DPII_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Theta50_Fuji-CA-Writable_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Theta76_Fuji-CA-DPII_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Theta76_Fuji-CA-Writable_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Durst_Zeta_Fuji-CA-Album_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier-PD_CA-DPII_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier-PD_CA-HD_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier-PD_CA-Pearl_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier-PD_CA-Writable_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier-Scanner_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier5-sRGB_CA-DPII_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier5-sRGB_CA-HD_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier5-sRGB_CA-Pearl_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_Frontier5-sRGB_CA_Writable_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_PG-3500_CM-off_V1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_PG-3500_CM-on3_V1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_PG-4000_CM-off_V1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_PG-4000_CM-on3_V1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_PG-4500_CM-off_V1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/Fuji_PG-4500_CM-on3_V1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/ZBE_Chromira_Fuji-CA-DPII_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/fujifilm/ZBE_Chromira_Fuji-CA-Pearl_v3a.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/sample.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/wan-ifra/WAN-IFRAnewspaper26v5.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/online/wan-ifra/WAN-IFRAnewspaper26v5_gr.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/oyranos-cms/libxcm/profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/psd/psd_1.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/psd/psd_2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/rodlie/geticc/geticc_test.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/AdobeCompat-v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/AppleCompat-v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/ColorMatchCompat-v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/DisplayP3-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/DisplayP3-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/DisplayP3-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/DisplayP3Compat-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/DisplayP3Compat-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/DisplayP3Compat-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/ProPhoto-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/ProPhoto-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/ProPhoto-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec2020-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec2020-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec2020-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec2020Compat-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec2020Compat-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec2020Compat-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec709-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec709-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/Rec709-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/WideGamutCompat-v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sGrey-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sGrey-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sGrey-v2-nano.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sGrey-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sRGB-v2-magic.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sRGB-v2-micro.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sRGB-v2-nano.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/sRGB-v4.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/saucecontrol/Compact-ICC-Profiles/scRGB-v2.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/shimbongsu/os-design/can4200n.icm",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/skyforcetw/cmsjava/dummy-lut-output-profile.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/truecolor_us/truecolor.us_NULL.icc",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/ICCReaderTests/Resources/truecolor_us/truecolor.us_Sample_Profile.icc",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "DumpFileTests.swift",
        "Helpers.swift",
        "ICCFileTests.swift",
        "XCTestManifests.swift",
        "s15Fixed16NumberTests.swift",
        "u16Fixed16NumberTests.swift",
        "u1Fixed15Number.swift",
        "u8Fixed8NumberTests.swift"
      ],
      "target_dependencies" : [
        "ICCReader"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ICCReader",
      "module_type" : "SwiftTarget",
      "name" : "ICCReader",
      "path" : "Sources/ICCReader",
      "product_dependencies" : [
        "DataStream"
      ],
      "product_memberships" : [
        "ICCReader"
      ],
      "sources" : [
        "Extensions/DataStreamAlign.swift",
        "ICCColorProfile+ICCMaxTags.swift",
        "ICCColorProfile+ICCTags.swift",
        "ICCColorProfile+PrivateTags.swift",
        "ICCColorProfile+RemovedTags.swift",
        "ICCColorProfile.swift",
        "ICCColorProfileHeader.swift",
        "ICCReadError.swift",
        "ICCSignature.swift",
        "ICCTag.swift",
        "ICCTagData.swift",
        "ICCTagSignature.swift",
        "ICCTagTable.swift",
        "ICCTagTypeSignature.swift",
        "ISO 15076-1/Basic Number Type/XYZNumber.swift",
        "ISO 15076-1/Basic Number Type/dateTimeNumber.swift",
        "ISO 15076-1/Basic Number Type/float32Number.swift",
        "ISO 15076-1/Basic Number Type/positionNumber.swift",
        "ISO 15076-1/Basic Number Type/response16Number.swift",
        "ISO 15076-1/Basic Number Type/s15Fixed16Number.swift",
        "ISO 15076-1/Basic Number Type/u16Fixed16Number.swift",
        "ISO 15076-1/Basic Number Type/u1Fixed15Number.swift",
        "ISO 15076-1/Basic Number Type/u8Fixed8Number.swift",
        "ISO 15076-1/Basic Number Type/uInt16Number.swift",
        "ISO 15076-1/Basic Number Type/uInt32Number.swift",
        "ISO 15076-1/Basic Number Type/uInt64Number.swift",
        "ISO 15076-1/Basic Number Type/uInt8Number.swift",
        "ISO 15076-1/ColorSpaceSignature.swift",
        "ISO 15076-1/ColorimetricIntentImageStateSignature.swift",
        "ISO 15076-1/ICCColorProfileClassSignature.swift",
        "ISO 15076-1/ICCColorProfileDeviceAttributes.swift",
        "ISO 15076-1/ICCColorProfileFlags.swift",
        "ISO 15076-1/ICCColorProfilePlatformSignature.swift",
        "ISO 15076-1/ICCColorProfileRenderingIntent.swift",
        "ISO 15076-1/ICCColorProfileVersion.swift",
        "ISO 15076-1/MultiplexColorSpaceSignature.swift",
        "ISO 15076-1/RenderingIntentGamutSignature.swift",
        "ISO 15076-1/SpectralProfileClassSignature.swift",
        "ISO 15076-1/Tag type definitions/Removed/deviceSettingsType.swift",
        "ISO 15076-1/Tag type definitions/Removed/namedColorType.swift",
        "ISO 15076-1/Tag type definitions/Removed/textDescriptionType.swift",
        "ISO 15076-1/Tag type definitions/XYZType.swift",
        "ISO 15076-1/Tag type definitions/chromacityType.swift",
        "ISO 15076-1/Tag type definitions/colorantOrderType.swift",
        "ISO 15076-1/Tag type definitions/colorantTableType.swift",
        "ISO 15076-1/Tag type definitions/crdInfoType.swift",
        "ISO 15076-1/Tag type definitions/curveOrParametricCurveType.swift",
        "ISO 15076-1/Tag type definitions/curveType.swift",
        "ISO 15076-1/Tag type definitions/dataType.swift",
        "ISO 15076-1/Tag type definitions/dateTimeType.swift",
        "ISO 15076-1/Tag type definitions/lut16Type.swift",
        "ISO 15076-1/Tag type definitions/lut8Type.swift",
        "ISO 15076-1/Tag type definitions/lutAToBType.swift",
        "ISO 15076-1/Tag type definitions/lutBToAType.swift",
        "ISO 15076-1/Tag type definitions/lutType.swift",
        "ISO 15076-1/Tag type definitions/measurementType.swift",
        "ISO 15076-1/Tag type definitions/multiLocalizedUnicodeType.swift",
        "ISO 15076-1/Tag type definitions/multiProcessElementsType.swift",
        "ISO 15076-1/Tag type definitions/namedColor2Type.swift",
        "ISO 15076-1/Tag type definitions/parametricCurveType.swift",
        "ISO 15076-1/Tag type definitions/profileSequenceDescType.swift",
        "ISO 15076-1/Tag type definitions/profileSequenceIdentifierType.swift",
        "ISO 15076-1/Tag type definitions/responseCurveSet16Type.swift",
        "ISO 15076-1/Tag type definitions/s15Fixed16ArrayType.swift",
        "ISO 15076-1/Tag type definitions/screeningType.swift",
        "ISO 15076-1/Tag type definitions/signatureType.swift",
        "ISO 15076-1/Tag type definitions/textDescriptionOrMultiLocalizedUnicodeTextType.swift",
        "ISO 15076-1/Tag type definitions/textOrMultiLocalizedUnicodeTextType.swift",
        "ISO 15076-1/Tag type definitions/textType.swift",
        "ISO 15076-1/Tag type definitions/u16Fixed16ArrayType.swift",
        "ISO 15076-1/Tag type definitions/uInt16ArrayType.swift",
        "ISO 15076-1/Tag type definitions/uInt32ArrayType.swift",
        "ISO 15076-1/Tag type definitions/uInt64ArrayType.swift",
        "ISO 15076-1/Tag type definitions/uInt8ArrayType.swift",
        "ISO 15076-1/Tag type definitions/ucrBgType.swift",
        "ISO 15076-1/Tag type definitions/viewingConditionsType.swift",
        "ISO 15076-1/TechnologySignature.swift",
        "Private/displayMakeAndModelType.swift",
        "Private/videoCardGammaTableType.swift",
        "iccMAX/Extended basic types/float16Number.swift",
        "iccMAX/Extended basic types/float64Number.swift",
        "iccMAX/Extended basic types/sparseMatrixEncoding.swift",
        "iccMAX/Extended basic types/sparseMatrixEncodingType.swift",
        "iccMAX/Extended basic types/spectralRange.swift",
        "iccMAX/Extended basic types/valueEncodingType.swift",
        "iccMAX/StructSignature.swift",
        "iccMAX/Tag Type Definitions/ImageEncodingType.swift",
        "iccMAX/Tag Type Definitions/dictType.swift",
        "iccMAX/Tag Type Definitions/embeddedHeightImageType.swift",
        "iccMAX/Tag Type Definitions/embeddedNormalImageOrEmbeddedHeightImageType.swift",
        "iccMAX/Tag Type Definitions/embeddedNormalImageType.swift",
        "iccMAX/Tag Type Definitions/float16ArrayType.swift",
        "iccMAX/Tag Type Definitions/float32ArrayType.swift",
        "iccMAX/Tag Type Definitions/float64ArrayType.swift",
        "iccMAX/Tag Type Definitions/gamutBoundaryDescriptionType.swift",
        "iccMAX/Tag Type Definitions/multiplexDefaultValuesType.swift",
        "iccMAX/Tag Type Definitions/namedColor2OrTagArrayType.swift",
        "iccMAX/Tag Type Definitions/sparseMatrixArrayType.swift",
        "iccMAX/Tag Type Definitions/spectralViewingConditionsType.swift",
        "iccMAX/Tag Type Definitions/spectralWhitePointType.swift",
        "iccMAX/Tag Type Definitions/tagArrayType.swift",
        "iccMAX/Tag Type Definitions/tagArrayTypeOrLut8Type.swift",
        "iccMAX/Tag Type Definitions/tagStructType.swift",
        "iccMAX/Tag Type Definitions/utf16Type.swift",
        "iccMAX/Tag Type Definitions/utf8OrUtf8ZipType.swift",
        "iccMAX/Tag Type Definitions/utf8Type.swift",
        "iccMAX/Tag Type Definitions/utf8ZipType.swift",
        "iccMAX/Tag Type Definitions/zipXmlType.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Done.